Classes

The following classes are available globally.

  • The Redis class represents a handle for issueing commands to a Redis server. It provides a set of type safe functions for issueing those commands.

    See more

    Declaration

    Swift

    public class Redis
  • A class for working with Redis binary strings. All data is stored as a UTF-8 string.

    See more

    Declaration

    Swift

    public class RedisString: CustomStringConvertible
  • The RedisMulti class is a handle for issueing transactions against a Redis server. Instances of the RedisMulti class are created using the Redis.multi function. These transactions are built using the various command related functions of the RedisMulti class. Once a transaction is built, it is sent to the Redis server and run using the RedisMulti.exec function.

    See more

    Declaration

    Swift

    public class RedisMulti