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

推荐订阅源

U
Unit 42
罗磊的独立博客
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
V
V2EX
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
量子位
MyScale Blog
MyScale Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
B
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
Vercel Edge Config + LaunchDarkly: Low latency, global fe...
2023-06-27 · via Vercel News

2 min read

We're excited to announce a new LaunchDarkly integration to bring low latency, global feature flags to your favorite frontend framework.

Feature flags help your team safely release new code and experiment with changes. Vercel Edge Config helps you instantly read configuration data globally, making it a perfect match for feature flag and experimentation data.

Link to headingVercel Edge Config

Vercel is the lowest-latency host for globally scalable applications using feature flags. By pushing data to every region, before any requests are made, you're able to read data from a Vercel Function or Edge Middleware immediately upon request.

Because data is pushed to every Vercel region at write time, we've seen most lookups return in 5 ms or less, and 99% of reads will return in under 15 ms.

This speed and global distribution make Edge Config great for:

  • A/B testing

  • Feature flags

  • Maintaining complex and dynamic redirects

  • Configuring and updating bespoke request blocking rules, without a redeploy

Link to headingExperimentation ecosystem

Developers in industries like retail and ecommerce know that every millisecond counts when it comes to user experiences. Thats why A/B testing while delivering the same page load times is crucial.

Today, we’re introducing an integration with LaunchDarkly to further the mission of ease in experimentation and speed and safety in releases.

LaunchDarkly integration on Vercel

LaunchDarkly Enterprise customers can install the LaunchDarkly integration to start exporting flag configurations to Vercel Edge Config.

Get started

The LaunchDarkly integration syncs the feature flags you have in LaunchDarkly into Edge Config. Then, the newly released vercel-server-sdk package bootstraps a LaunchDarkly client from those flags. You can then consume them from Edge Config instead of fetching from LaunchDarkly, meaning your flags are instantly available.

app/page.tsx

import { init } from '@launchdarkly/vercel-server-sdk'

import { createClient } from '@vercel/edge-config'

import { Dashboard, LegacyDashboard } from "./dashboards"

const edgeClient = createClient(process.env.EDGE_CONFIG)

const ldClient = init("YOUR CLIENT-SIDE ID", edgeClient)

export const runtime = "edge"

export default async function Home() {

await ldClient.waitForInitialization()

const ldContext = { kind: 'org', key: 'my-org-key' }

const showNewDashboard = await ldClient.variation('new-dashboard', ldContext, true)

return showNewDashboard ? <Dashboard /> : <LegacyDashboard />

}

This lower latency is especially critical in a serverless world. Since compute is short lived, you can’t fetch once and then subscribe to updates like you would on a long running server.

The combination of Vercel Edge Config and the LaunchDarkly integration for Vercel lets us update our feature flagging configurations comfortably and automatically push them to our Edge Config store in real time. We are able to change the UI and behavior of our application without the need to re-deploy, which keeps us highly flexible. The low latency that Edge Config provides reduces the overhead of fetching flag configurations over HTTP, allowing us to have minimal latency and create a better experience for our users.

Vincent Derks, Lead Engineer at Joyn

Vercel Edge Config provides a unique combination of active global replication with near-instant reads. In combination with LaunchDarkly, this allows users like Joyn to update their UI in seconds with almost zero added latency.

Link to headingGet started

Visit the LaunchDarkly integration or template to get started or check out the Edge Config documentation to learn more.