KeysCommands<K, V> class abstract

key-value operation commands

Implementers

Constructors

KeysCommands()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

del(K key) Future<bool>
DEL command (delete item)
exists(K key) Future<bool>
EXISTS command (check existence)
expire(K key, Duration duration) Future<bool>
EXPIRE command (set expire duration)
get(K key) Future<V?>
GET command (get value)
getdel(K key) Future<V?>
GETDEL command (get value and delete value)
keys(String pattern) Future<List<String>>
KEYS command (get keys that match pattern)
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
set(K key, V value) Future<bool>
SET command (set value)
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited