Skip to content

Commit 51c4b57

Browse files
committed
up
1 parent ca5694b commit 51c4b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
### New Features
1111

12-
- **Added support for Contextual Multi-Armed Bandit (CMAB)**: Added support for CMAB experiments(Contextaul Bandits rules) with new configuration options and cache control. To get decision from CMAB rules, `decideAsync` and related methods must be used. the sync `decide` method does not support CMABs and will just skip CMAB rules while making decision for a flag.
12+
- **Added support for Contextual Multi-Armed Bandit (CMAB)**: Added support for CMAB experiments(Contextual Bandits rules) with new configuration options and cache control. To get decision from CMAB rules, `decideAsync` and related methods must be used. The sync `decide` method does not support CMABs and will just skip CMAB rules while making decision for a flag.
1313

1414
#### CMAB Configuration Options
1515

@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2323
cmab: {
2424
cacheSize: 1000, // Optional: Set CMAB cache size (default: 1000)
2525
cacheTtl: 30 * 60 * 1000, // Optional: Set CMAB cache TTL in milliseconds (default: 30 * 60 * 1000)
26-
cache: customCache // Optional: Custom cache implementation, instance of CacheWithRemnove interface
26+
cache: customCache // Optional: Custom cache implementation, instance of CacheWithRemove interface
2727
}
2828
});
2929
```

0 commit comments

Comments
 (0)