vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Struct RedisObject

Models a single strongly typed object.

struct RedisObject(T) ;

This structure is rougly equivalent to a value of type T. The underlying data is represented as a Redis hash. This means that only primitive fields are supported for T.

Constructors

NameDescription
this (db, key)
this (hash)

Fields

NameTypeDescription
m_hash RedisHash!string

Properties

NameTypeDescription
exists[get] bool
get[get] T

Methods

NameDescription
fields ()
opAssign (val)
remove ()
toKeysAndValues (val)
Authors

Sönke Ludwig

Copyright

© 2014 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.