From cc8d1371a4260eb05d906b728a30c0127c95cbe8 Mon Sep 17 00:00:00 2001 From: Dustin Byrne Date: Wed, 27 May 2026 17:25:58 -0400 Subject: [PATCH] docs: remove experimental flag definition cache labels --- posthog/flag_definition_cache.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/posthog/flag_definition_cache.py b/posthog/flag_definition_cache.py index 0a55680a..d1a58e9d 100644 --- a/posthog/flag_definition_cache.py +++ b/posthog/flag_definition_cache.py @@ -1,8 +1,6 @@ """ Flag Definition Cache Provider interface for multi-worker environments. -EXPERIMENTAL: This API may change in future minor version bumps. - This module provides an interface for external caching of feature flag definitions, enabling multi-worker environments (Kubernetes, load-balanced servers, serverless functions) to share flag definitions and reduce API calls. @@ -57,8 +55,6 @@ class FlagDefinitionCacheProvider(Protocol): Enables multi-worker environments to share flag definitions, reducing API calls while ensuring all workers have consistent data. - EXPERIMENTAL: This API may change in future minor version bumps. - Methods may be implemented as either synchronous functions or async functions. If a method returns an awaitable, the SDK runs it to completion before continuing.