Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {

Check failure on line 1 in src/index.ts

View workflow job for this annotation

GitHub Actions / typecheck

Property 'useTLRUInMemoryAssignmentCache' does not exist on type 'EppoClient'. Did you mean 'useLRUInMemoryAssignmentCache'?

Check failure on line 1 in src/index.ts

View workflow job for this annotation

GitHub Actions / lint-test-sdk

Property 'useTLRUInMemoryAssignmentCache' does not exist on type 'EppoClient'. Did you mean 'useLRUInMemoryAssignmentCache'?
IAssignmentLogger,
validation,
EppoClient,
Expand Down Expand Up @@ -125,7 +125,7 @@
// we estimate this will use no more than 10 MB of memory
// and should be appropriate for most server-side use cases.
clientInstance.useLRUInMemoryAssignmentCache(50_000);
clientInstance.useLRUInMemoryBanditAssignmentCache(50_000);
clientInstance.useTLRUInMemoryAssignmentCache(50_000);

// Fetch configurations (which will also start regular polling per requestConfiguration)
await clientInstance.fetchFlagConfigurations();
Expand Down
Loading