Wire Protocols
>
RESP (Valkey/Redis)

VALKEY/REDIS

Pogocache supports the RESP protocol, which is the protocol of Valkey and Redis. Many RESP client libraries can be used with Pogocache.

Here's an example using the Valkey command line client.

$ valkey-cli -p 9401
> SET mykey value
OK
> GET mykey
"my value"
> DEL mykey
(integer) 1