惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
MyScale Blog
MyScale Blog
Recent Announcements
Recent Announcements
N
Netflix TechBlog - Medium
GbyAI
GbyAI
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Martin Fowler
Martin Fowler
腾讯CDC
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
WordPress大学
WordPress大学
P
Proofpoint News Feed
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Introducing storage on Vercel - Vercel – Vercel
2023-05-01 · via Vercel News

3 min read

Vercel KV, Vercel Postgres, Vercel Blob, and Vercel Edge Config are now available.

Data is an integral part of the web. As JavaScript and TypeScript frameworks make it easier than ever to server-render just-in-time data, it's time to make databases a first-class part of Vercel's frontend cloud.

The Vercel KV and Vercel Postgres products have been sunset. You can now deploy alternative storage solutions for KV and Postgres through the Vercel Marketplace Storage, with automatic account provisioning and unified billing.

Today, we’re excited to announce a suite of serverless storage solutions now available on Vercel, powered by some of the best infrastructure providers in the industry.

  • Vercel KV: A serverless Redis solution that's easy and durable, powered by Upstash

  • Vercel Postgres: A serverless SQL database built for the frontend, powered by Neon

  • Vercel Blob: A solution to upload and serve files at the edge

Link to headingWhy now?

Driven by the need for both performance and personalization, frameworks are becoming server-first and edge-first. This shift is exemplified by React Server Components and the introduction of streaming infrastructure into our runtimes. These capabilities make it easier than ever to fetch data from a database or other data sources, within the server component itself.

Simultaneously, as the world moves away from monolithic architectures to composable ones, there's no shortage of options for backends and databases. But for new projects, the choice can still be paralyzing.

In the spirit of being the end-to-end solution for building on the web, we are introducing solutions that are open, easy to use, and scale as efficiently as our frontends.

Link to headingVercel KV: A durable Redis database

A key-value store like Redis is one of the most common tools developers reach for when managing things like rate-limiting, session management, or application state.

Today, we're introducing Vercel KV, a serverless, Redis-compatible, easy-to-use, and highly durable database. Vercel KV enables you to create Redis-compatible databases that can be written to and read from Vercel's Edge Network in regions you specify, with little configuration needed.

user-prefs.ts

import kv from '@vercel/kv';

export async function getPrefs() {

const prefs = await kv.get('prefs');

return prefs || {};

}

export async function updatePrefs(prefs: Record<string, string>) {

return kv.set('prefs', prefs);

}

We’ve partnered with Upstash to deliver tooling designed to embrace serverless, that persists in memory and on disk by default. This means it can be used to persist state, without risk of losing your data when a server crashes.

Link to headingVercel Postgres: Complex data made easy

PostgreSQL is the preferred way of handling relational data for many developers. We’ve partnered with Neon to introduce Vercel Postgres, the first serverless SQL database built for the frontend cloud.

app/page.tsx

import { sql } from '@vercel/postgres';

import { redirect } from 'next/navigation';

async function create(formData: FormData) {

'use server';

const { rows } = await sql`

INSERT INTO products (name)

VALUES (${formData.get('name')})

`;

redirect(`/product/${rows[0].slug}`);

}

export default function Page() {

return (

<form action={create}>

<input type="text" name="name" />

<button type="submit">Submit</button>

</form>

);

}

Use Vercel Postgres with Next.js Server Actions (to be announced Thursday)

With Vercel Postgres, you get a fully managed, highly scalable, fault-tolerant database that delivers high performance and low latency for your web applications. Vercel Postgres is designed to work seamlessly with the Next.js App Router and Server Components and other frameworks like Nuxt and SvelteKit, making it easy to fetch data from your Postgres database to render dynamic content on the server at the speed of static.

You can use Vercel Postgres to query, insert, update, or delete data directly inside your React Server Components, providing you with powerful server-first data mutations and less client-side JavaScript.

Link to headingVercel Blob: Easy file storage at the edge

Vercel Blob is a fast, easy, and efficient solution for storing files in the cloud. It provides an effortless yet powerful storage API built entirely on top of web standards without the need to configure buckets or implement heavy SDKs.

app/profile/route.ts

import { put } from '@vercel/blob';

export async function PUT(request: Request) {

const form = await request.formData();

const file = form.get('file') as File;

const blob = await put('avatars/user-42.png', file, { access: 'public' });

return Response.json(blob);

}

Vercel Blob can store files like images, PDFs, CSVs, or other unstructured data. Use Vercel Blob for:

  • Files you normally store in an external file storage solution like Amazon S3. With your project hosted on Vercel, you can readily access and manage these files via Vercel Blob

  • Files that are programmatically uploaded or generated at build time, for display and download such as avatars, screenshots, cover images and videos

  • Large files such as videos and audio to take advantage of the global network

Link to headingGetting started

This builds on our existing integrations with database partners like Supabase, PlanetScale, and MongoDB.

Vercel's first-party storage makes it easy for developers to manage their frontend storage needs, without worrying about infrastructure. Hobby and Pro users can get started with Vercel KV and Vercel Postgres today.

Get started with KV

Try Vercel KV with our Next.js starter template.

Open template

Get started with Postgres

Try Vercel Postgres with our Next.js starter template.

Open template

Vercel Blob is currently in Private Beta and will be rolling out soon, sign up to get early access. Learn more about pricing, limits, and usage in the documentation.