Skip to content

Commit

Permalink
GEODE-8663: update Redis Info command To include additional statistics (
Browse files Browse the repository at this point in the history
apache#5678)

Co-authored-by: Ray Ingles <[email protected]>
Co-authored-by: Hale Bales <[email protected]>
  • Loading branch information
3 people authored Nov 9, 2020
1 parent c068979 commit e1f5518
Show file tree
Hide file tree
Showing 13 changed files with 853 additions and 52 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public class GeodeRedisServerRule extends SerializableExternalResource {
private GeodeRedisServer server;
private CacheFactory cacheFactory;


public GeodeRedisServerRule() {
cacheFactory = new CacheFactory();

cacheFactory.set(LOG_LEVEL, "warn");
cacheFactory.set(MCAST_PORT, "0");
cacheFactory.set(LOCATORS, "");
Expand All @@ -47,6 +47,8 @@ protected void before() {
server.setAllowUnsupportedCommands(true);
}



public GeodeRedisServerRule withProperty(String property, String value) {
cacheFactory.set(property, value);
return this;
Expand Down
Loading

0 comments on commit e1f5518

Please sign in to comment.