Classes
The following classes are available globally.
-
The
See moreRedis
class represents a handle for issueing commands to a Redis server. It provides a set of type safe functions for issueing those commands.Declaration
Swift
public class Redis
-
A class for working with Redis
See morebinary
strings. All data is stored as a UTF-8 string.Declaration
Swift
public class RedisString: CustomStringConvertible
-
The
See moreRedisMulti
class is a handle for issueingtransactions
against a Redis server. Instances of theRedisMulti
class are created using theRedis.multi
function. These transactions are built using the various command related functions of theRedisMulti
class. Once atransaction
is built, it is sent to the Redis server and run using theRedisMulti.exec
function.Declaration
Swift
public class RedisMulti