Title: | R Bindings to rlite |
---|---|
Description: | R bindings to rlite. rlite is a "self-contained, serverless, zero-configuration, transactional redis-compatible database engine. rlite is to Redis what SQLite is to SQL.". |
Authors: | Rich FitzJohn [aut, cre], Sebastian Waisbrot [cph], Lua.org PUC-Rio [cph] |
Maintainer: | Rich FitzJohn <[email protected]> |
License: | GPL-2 |
Version: | 0.4.0 |
Built: | 2024-11-05 09:16:04 UTC |
Source: | https://github.com/ropensci/rrlite |
Create an interface to rlite, with a generated interface to all
rlite commands (using Redux
).
hirlite(...) rlite_available(...)
hirlite(...) rlite_available(...)
... |
Named configuration options passed to
|
r <- hirlite() r$PING() r$SET("foo", "bar") r$GET("foo")
r <- hirlite() r$PING() r$SET("foo", "bar") r$GET("foo")
rlite configuration settings. Based on the redis_config
function but with additional tweaks for rlite. The differences
between this configuration and redis_config
is that:
rlite_config(...)
rlite_config(...)
... |
Arguments passed to |
RLITE_URL
takes precendence over REDIS_URL
if
both are present (otherwise REDIS_URL
will still be used).
A host of localhost
or 127.0.0.1
, which is
redis_config
's default, will map to a filename of
:memory:
for a transient in-memory store.
The port
entry will be ignored, but the password
and
db
entries will be used if present. path
is
equivalent to host
.
Create a rlite connection. This function is designed to be used
in other packages, and not directly by end-users. However, it is
possible and safe to use. See the hirlite
package
for the user friendly interface.
rlite_connection(config = rlite_config())
rlite_connection(config = rlite_config())
config |
Configuration parameters as generated by
|
This function creates a list of functions, appropriately bound to a pointer to a rlite connection. This is designed for package authors to use so without having to ever deal with the actual pointer itself (which cannot be directly manipulated from R anyway).
The returned list has elements, all of which are functions:
config()
The configuration information
reconnect()
Attempt reconnection of a connection that has been closed, through serialisation/deserialiation or through loss of internet connection.
Run a Redis command. The format of this command will be documented elsewhere.
Run a pipeline of Redis commands.
Subscribe to a
channel or pattern specifying channels. Here, channel
must
be a character vector, pattern
a logical indicating if
channel
should be interpreted as a pattern, callback
is a function to apply to each recieved message, returning
TRUE
when subscription should stop, and envir
is the
environment in which to evaluate callback
. See below.
The callback function must take a single argument; this will be
the recieved message with named elements type
(which will
be message), channel
(the name of the channel) and
value
(the message contents). If pattern
was
TRUE
, then an additional element pattern
will be
present (see the Redis docs). The callback must return
TRUE
or FALSE
; this indicates if the client should
continue quit (i.e., TRUE
means return control to R,
FALSE
means keep going).
Because the subscribe
function is blocking and returns
nothing, so all data collection needs to happen as a side-effect
of the callback function.
There is currently no way of interrupting the client while it is waiting for a message.