summaryrefslogtreecommitdiff
path: root/memcached.c
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2023-03-13 21:47:54 -0700
committerdormando <dormando@rydia.net>2023-03-26 16:48:37 -0700
commit595758ad02ac3ab57ae981c9d736563812861eaf (patch)
treeaec2940c0794667c1c1dfb3c17ad3f6074f2c2dd /memcached.c
parent6d767eb78ae256375cfe23a0a91ea6e12e046d6b (diff)
downloadmemcached-595758ad02ac3ab57ae981c9d736563812861eaf.tar.gz
proxy: rip out io_uring code
with the event handler rewrite the IO thread scales much better (up to 8-12 worker threads), leaving the io_uring code in the dust. realistically io_uring won't be able to beat the event code if you're using kernels older than 6.2, which is brand new. Instead of carrying all this code around and having people randomly try it to get more performance, I want to rip it out of the way and add it back in later when it makes sense. I am using mcshredder as a platform to learn and keep up to date with io_uring, and will port over its usage pattern when it's time.
Diffstat (limited to 'memcached.c')
-rw-r--r--memcached.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/memcached.c b/memcached.c
index 8e8a180..306a952 100644
--- a/memcached.c
+++ b/memcached.c
@@ -4158,9 +4158,6 @@ static void usage(void) {
#endif
#ifdef PROXY
printf(" - proxy_config: path to lua config file.\n");
-#ifdef HAVE_LIBURING
- printf(" - proxy_uring: enable IO_URING for proxy backends.\n");
-#endif
#endif
#ifdef TLS
printf(" - ssl_chain_cert: certificate chain file in PEM format\n"