Merge branch 'unstable' into RELEASE_5

Former-commit-id: e603e57588d040f96876d6b281a3867a8db53f6a
This commit is contained in:
John Sully 2020-01-10 17:46:23 -05:00
commit 18df86fcde
2 changed files with 4 additions and 1 deletions

View File

@ -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. 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.
<img src=https://cdn-images-1.medium.com/max/1400/1*s7mTb7Qb0kxc951mz8bdgA.png width=420 height=300/><img src=https://cdn-images-1.medium.com/max/1400/1*R00A5U4AFGohGOYHMfT6fA.png height=300/> <img src="https://keydb.dev/assets/img/blog/5x_opspersecVSdatasize.PNG"/>
See the full benchmark results and setup information here: https://docs.keydb.dev/blog/2019/10/07/blog-post/
Why fork Redis? Why fork Redis?
--------------- ---------------

View File

@ -804,6 +804,7 @@ void loadServerConfigFromString(char *config) {
// NOP, handled in main // NOP, handled in main
} else if (!strcasecmp(argv[0],"enable-pro")) { } else if (!strcasecmp(argv[0],"enable-pro")) {
cserver.fUsePro = true; cserver.fUsePro = true;
break;
} else { } else {
err = "Bad directive or wrong number of arguments"; goto loaderr; err = "Bad directive or wrong number of arguments"; goto loaderr;
} }