Menu

A/B Testing and Feature Flags with sub-millisecond performance
📰
0

A/B Testing and Feature Flags with sub-millisecond performance

Vercel News·Dominik Ferber·4 days ago
#zmErL4ZK
#vercel#edge#config#latency#photo#article
Reading 0:00
15s threshold

A globally distributed data store for low latency experimentation. Configuration data is used to control everything from A/B testing and feature flags to advanced rewrites and bespoke request-blocking rules. However, traditional solutions for managing configuration data can be slow, unreliable, and difficult to scale, which can negatively impact the user experience, latency, and overall effectiveness of your website. Today we’re announcing the general availability of Edge Config , a new solution for managing configuration data in the cloud designed to be ultra-fast, reliable, and scalable, which can help improve your website's performance and efficiency. import { NextResponse , NextRequest } from "next/server" ; import { get } from "@vercel/edge-config" ; export async function middleware ( request : NextRequest ) { if ( await get ( "showNewDashboard" ) ) { return NextResponse . rewrite ( new URL ( "/new-dashboard" , request .…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More