summaryrefslogtreecommitdiff
path: root/src/networking.c
Commit message (Expand)AuthorAgeFilesLines
* Avoid the sdslen() on shared.crlf given we know its size beforehand. Improve ...filipe oliveira2022-08-041-4/+4
* Avoid using unsafe C functions (#10932)ranshid2022-07-181-1/+1
* Normalize the style of help information with other documentation (#10965)Wen Hui2022-07-121-1/+1
* Account sharded pubsub channels memory consumption (#10925)Harkrishn Patro2022-07-041-3/+1
* Add sharded pubsub keychannel count to client info (#10895)jonnyomerredis2022-06-281-1/+2
* Add RM_SetClientNameById and RM_GetClientNameById (#10839)Viktor Söderqvist2022-06-261-15/+23
* Replace regular array to array of structs to get rid of false sharing (#10892)Elvina Yakubova2022-06-261-3/+8
* Fix broken protocol in MISCONF error, RM_Yield bugs, RM_Call(EVAL) OOM check ...Oran Agra2022-06-011-1/+1
* Adds isolated netstats for replication. (#10062)DarrenJiang132022-05-311-3/+14
* Remove a redundant free in freeClient (#10721)Tian2022-05-141-1/+0
* Set replicas to panic on disk errors, and optionally panic on replication err...Madelyn Olson2022-04-261-0/+15
* By default prevent cross slot operations in functions and scripts with # (#10...Madelyn Olson2022-04-261-0/+2
* Fix typos and limit unknown command error message (#10634)Binbin2022-04-251-1/+1
* Fix regression not aborting transaction on error, and re-edit some error resp...guybe72022-04-251-1/+1
* Durability enhancement for appendfsync=always policy (#9678)zhaozhao.zz2022-04-111-25/+27
* fix indent space (#10562)cyhone2022-04-101-1/+1
* optimize(remove) usage of client's pending_querybuf (#10413)zhaozhao.zz2022-03-251-27/+51
* Add module API for redacting command arguments (#10425)Madelyn Olson2022-03-151-1/+5
* Optimization: remove `updateClientMemUsage` from i/o threads. (#10401)yoav-steinberg2022-03-151-7/+12
* Remove redundancy GETNAME in client help command message (#10418)Wen Hui2022-03-131-2/+0
* fix typos (#10402)a2tt2022-03-091-2/+2
* XREADGROUP: Unblock client if stream is deleted (#10306)guybe72022-03-081-0/+4
* Sort out the mess around Lua error messages and error stats (#10329)Meir Shpilraien (Spielrein)2022-02-271-31/+64
* Optimization: Avoid deferred array reply on ZRANGE commands BYRANK (#10337)filipe oliveira2022-02-241-4/+5
* Optimize deferred replies to use shared objects instead of sprintf (#10334)filipe oliveira2022-02-231-2/+27
* Reduce system calls of write for client->reply by introducing writev (#9934)Andy Pan2022-02-221-28/+87
* introduce dynamic client reply buffer size - save memory on idle clients (#9822)ranshid2022-02-221-3/+12
* Fix error stats and failed command stats for blocked clients (#10309)Oran Agra2022-02-211-0/+1
* Fix and improve module error reply statistics (#10278)Oran Agra2022-02-131-0/+37
* sub-command support for ACL CAT and COMMAND LIST. redisCommand always stores ...Binbin2022-01-231-12/+17
* Adding module api for processing commands during busy jobs and allow flagging...perryitay2022-01-201-8/+14
* Set repl-diskless-sync to yes by default, add repl-diskless-sync-max-replicas...Oran Agra2022-01-171-3/+3
* Reuse temporary client objects for blocked clients by module (#9940)Ozan Tezcan2022-01-111-31/+43
* Make sure replicas don't write their own replies to the replication link (#10...Binbin2022-01-101-3/+33
* Fix crash when error [sub]command name contains | (#10082)Binbin2022-01-091-1/+1
* Sharded pubsub implementation (#8621)Harkrishn Patro2022-01-021-0/+4
* Make sure replicas don't write their own replies to the replication link (#10...yoav-steinberg2022-01-021-0/+11
* Wait for replicas when shutting down (#9872)Viktor Söderqvist2022-01-021-24/+61
* Generate RDB with Functions only via redis-cli --functions-rdb (#9968)yoav-steinberg2022-01-021-0/+1
* Sort out mess around propagation and MULTI/EXEC (#9890)guybe72021-12-231-1/+1
* Allow most CONFIG SET during loading, block some commands in async-loading (#...Oran Agra2021-12-221-3/+7
* Protected configs and sensitive commands (#9920)YaacovHazan2021-12-191-6/+14
* Auto-generate the command table from JSON files (#9656)guybe72021-12-151-2/+2
* Redis Functions - Introduce script unit.meir@redislabs.com2021-12-011-3/+4
* Redis Functions - Move Lua related variable into luaCtx structmeir@redislabs.com2021-12-011-1/+1
* Fix CLIENT KILL kill all clients with id 0 (#9853)Binbin2021-11-291-3/+4
* QUIT is a command, HOST: and POST are not (#9798)guybe72021-11-231-1/+7
* Fix occasional RM_Call() crashes. (#9805)Yossi Gottlieb2021-11-211-3/+10
* Add sanitizer support and clean up sanitizer findings (#9601)Ozan Tezcan2021-11-111-1/+6
* Replication backlog and replicas use one global shared replication buffer (#9...Wang Yuan2021-10-251-66/+151