| Did you know ... | Search Documentation: |
| Pack logtalk -- logtalk-3.98.0/library/redis/NOTES.md |
This file is part of Logtalk https://logtalk.org/ SPDX-FileCopyrightText: 1998-2026 Paulo Moura <pmoura@logtalk.org> SPDX-License-Identifier: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
redisRedis client library. Supports ECLiPSe, GNU Prolog, SICStus Prolog, SWI-Prolog, Trealla Prolog, and XVM.
For general information on Redis, including a list of the available commands, visit:
https://redis.io
Open the [../../apis/library_index.html#redis](../../apis/library_index.html#redis) link in a web browser.
To load this library, load the loader.lgt file:
| ?- logtalk_load(redis(loader)).
To test this library predicates, load the tester.lgt file:
| ?- logtalk_load(redis(tester)).
The tests assume a localhost Redis server running on the default port (6379) if the REDIS_HOST and REDIS_PORT environment variables are not defined. If the server is not detected, the tests are skipped.
The unit tests were originally written by Sean Charles for his GNU Prolog Redis client library:
https://github.com/emacstheviking/gnuprolog-redisclient
The Logtalk version is a straight-forward port of the original tests using
the test/1 dialect of lgtunit.
This library provides wrapper predicates for commonly used Redis operations across multiple data types. For Redis commands not covered by a wrapper, use the generic `redis::send/3` predicate with the command as a compound term.
Hashes are maps between string fields and string values, ideal for representing objects.
Redis lists are ordered collections of strings, sorted by insertion order.
Redis sets are unordered collections of unique strings.
Sorted sets are collections of unique strings (members) ordered by an associated score. Members are unique, but scores may repeat.
% Connect and perform basic string operations
?- redis::connect(Connection),
redis::set(Connection, mykey, 'Hello World', Status),
redis::get(Connection, mykey, Value),
redis::disconnect(Connection).
Status = 'OK',
Value = 'Hello World'.
% Working with hashes
?- redis::connect(Connection),
redis::hset(Connection, user:1000, name, 'John Doe', _),
redis::hset(Connection, user:1000, email, 'john@example.com', _),
redis::hgetall(Connection, user:1000, Fields),
redis::disconnect(Connection).
Fields = [bulk(name), bulk('John Doe'), bulk(email), bulk('john@example.com')].
% Using lists as queues
?- redis::connect(Connection),
redis::rpush(Connection, queue, task1, _),
redis::rpush(Connection, queue, task2, _),
redis::lpop(Connection, queue, Task),
redis::disconnect(Connection).
Task = task1.
% Batch operations with mget/mset
?- redis::connect(Connection),
redis::mset(Connection, [key1, val1, key2, val2], Status),
redis::mget(Connection, [key1, key2], Values),
redis::disconnect(Connection).
Status = 'OK',
Values = [bulk(val1), bulk(val2)].
% Key expiration
?- redis::connect(Connection),
redis::set(Connection, session:xyz, 'user_data', _),
redis::expire(Connection, session:xyz, 3600, _), % Expire in 1 hour
redis::ttl(Connection, session:xyz, TTL),
redis::disconnect(Connection).
TTL = 3600.
% Using send/3 for commands without wrappers
?- redis::connect(Connection),
redis::send(Connection, info(server), Reply),
redis::disconnect(Connection).
This library is inspired by the Sean Charles GNU Prolog Redis client library.
Recent versions of macOS seem to disable the mapping of localhost to
127.0.0.1. This issue may prevent running this library unit tests and
the `redis::connect/1` predicate from working. This can be fixed either
by editing the `/etc/hosts` file or by using in alternative the predicate
`redis::connect/3 with '127.0.0.1'` as the first argument.