diff --git a/README.md b/README.md index 8d8c59ff0..70b879d52 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,9 @@ KeyDB maintains full compatibility with the Redis protocol, modules, and scripts On the same hardware KeyDB can perform twice as many queries per second as Redis, with 60% lower latency. Active-Replication simplifies hot-spare failover allowing you to easily distribute writes over replicas and use simple TCP based load balancing/failover. KeyDB's higher performance allows you to do more on less hardware which reduces operation costs and complexity. - + + +See the full benchmark results and setup information here: https://docs.keydb.dev/blog/2019/10/07/blog-post/ Why fork Redis? --------------- diff --git a/src/config.cpp b/src/config.cpp index f1e562f6b..c056b98dc 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -804,6 +804,7 @@ void loadServerConfigFromString(char *config) { // NOP, handled in main } else if (!strcasecmp(argv[0],"enable-pro")) { cserver.fUsePro = true; + break; } else { err = "Bad directive or wrong number of arguments"; goto loaderr; }