Poco

namespace Redis

Overview

Classes: Array, AsyncReader, Client, Command, Error, PooledConnection, RedisEventArgs, RedisException, RedisIOS, RedisInputStream, RedisOutputStream, RedisStreamBuf, RedisType, RedisTypeTraits, Type

Types Aliases: BulkString

Classes

class Array

Represents a Redis Arraymore...

class AsyncReader

Wrapper around a Redis client to read messages asynchronously. more...

class Client

Represents a connection to a Redis server. more...

class Command

Helper class for creating commands. more...

class Error

Represent a Redis error. more...

class PooledConnection

Helper class for borrowing and returning a connection automatically from a pool. more...

class RedisEventArgs

Event arguments for AsyncReader events. more...

class RedisException

 more...

class RedisIOS

 more...

class RedisInputStream

An input stream for reading from a Redis server. more...

class RedisOutputStream

An output stream for writing to a Redis server. more...

class RedisStreamBuf

BufferedStreamBuf for Redismore...

class RedisType

Base class for all Redis types. more...

struct RedisTypeTraits

 more...

class Type

Template class for all Redis types. more...

Types Aliases

BulkString

using BulkString = Nullable < std::string >;

A bulk string is a string that can contain a NULL value. So, BulkString is an alias for Nullable<std::string>.