object
redisï
Redis client. Inspired by Sean Charles GNU Prolog Redis client.
logtalk_load(redis(loader))static, context_switching_calls
Command representation: Use the Redis command name as the functor of a compound term where the arguments are the command arguments.
Valid arguments: Atoms, integers, and floats. Always use atoms instead of double-quoted âstringsâ. This helps portability by not depending on the value of the
double_quotesflag.
Public predicatesï
connect/1ï
Connect to a Redis server running on localhost using the default 6379 port.
staticconnect(Connection)connect(--ground) - oneconnect/3ï
Connect to a Redis server running on the given host and port.
staticconnect(Host,Port,Connection)connect(+atom,+integer,--ground) - onedisconnect/1ï
Disconnect from a Redis server.
staticdisconnect(Connection)disconnect(++ground) - onesend/3ï
Sends a request to the a Redis server and returns its reply.
staticsend(Connection,Request,Reply)send(++ground,++callable,--callable) - oneconsole/1ï
Sends a request to a Redis server running on localhost at the default 6379 port and prints the reply.
staticconsole(Request)console(++callable) - oneProtected predicatesï
(no local declarations; see entity ancestors if any)
Private predicatesï
(no local declarations; see entity ancestors if any)
Operatorsï
(none)