Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.0.10 Home All releases olderv2.0.9 v2.0.11newer
Claude Code v2.0.10

Dynamic Configuration Caching

What: Statsig dynamic configurations are now cached in application state for faster access How to use: This is automatic. Config values are returned immediately from cache while fresh values are fetched in the background.

Details:

  • New cachedDynamicConfigs object in state stores config values by key
  • B2Q(configName, defaultValue) retrieves cached value immediately, fetches fresh value asynchronously
  • Q2Q(configName) clears a specific cached config
  • Reduces repeated API calls to Statsig
  • Improves initial render performance
  • Evidence: cachedDynamicConfigs at line 440962, B2Q() at line 441924, Q2Q() at line 441937 in v2.0.10 (did not exist in v2.0.9)

See this entry in the whole of v2.0.10 →