Files
phpredis/.gitignore
T
michael-grunder 2c5ef19257 Introduce new RedisCmd based command construction
* Introduce a new `RedisCmd` struct to dynamically append RESP arguments
  such that we don't have to precalculate the number of arguments the
  command will have up front.

  Additionally the new `RedisCmd allows both a `void *` context pointer
  but also can attach a `void (*ctx_dtor)(void*)` destructor so we are
  still able to clean up any allocated context when commands fail.

  This moves the context cleanup out of every individual reply handler
  and into the generic processing wrappers.

* Create a small group of `resp_str` helper functions for lower level
  concatination of RESP protocol data over the wire.

* Lots of small modernization of the codebase such as using
  `zend_string*` instead of (`char *`, `size_t`) pairs.

* Greatly simplify `crosslot` handling logic
2026-06-04 12:16:35 -07:00

30 lines
264 B
Plaintext

/.idea
/.vscode
.cache
/docs/.cache
.cquery
*.dep
*.deps
*.libs
*.o
*.la
*.lo
Makefile*
configure*
ac*.m4
config.*
install-sh
libtool
./*.sh
build*
missing
autom4te.cache
mkinstalldirs
tags
compile_commands.json
doctum.phar
run-tests.php
vendor/
.agents.md
.codex