migrating redis from bloom filter to classic cache

Signed-off-by: chandresh pancholi <chandresh.pancholi@navi.com>
This commit is contained in:
chandresh pancholi
2021-10-22 01:00:32 +05:30
parent ae64ff22d0
commit 49f7ac5ba3
11 changed files with 34 additions and 22 deletions

View File

@@ -18,8 +18,7 @@ public class MockController {
@GetMapping("/mock")
public String test(@RequestParam("experiment") String experiment) {
var context = LitmusContext.builder().addProperty("cc", "5").build();
var result = litmus.isEnabled(experiment, context);
var result = litmus.isEnabled(experiment);
log.info("result ----> {}", result);
return "result ==> " + result;