- Preparing search index...
- The search index is not available
Moirae
Methods
addToSet
- addToSet<T>(key: string, value: T): Promise<boolean>
-
Returns Promise<boolean>
getKey
- getKey<T>(key: string, options?: ICacheOptions<T>): Promise<T>
-
Parameters
-
key: string
-
options: ICacheOptions<T> = {}
Returns Promise<T>
Protected
Abstract
handleAddToSet
- handleAddToSet(key: string, value: string): Promise<boolean>
-
Parameters
-
key: string
-
value: string
Returns Promise<boolean>
Protected
Abstract
handleGetKey
- handleGetKey(key: string): Promise<string>
-
Returns Promise<string>
Protected
Abstract
handleReadFromSet
- handleReadFromSet(key: string): Promise<string[]>
-
Returns Promise<string[]>
Protected
Abstract
handleRemoveFromSet
- handleRemoveFromSet(key: string, value: string): Promise<boolean>
-
Parameters
-
key: string
-
value: string
Returns Promise<boolean>
Protected
Abstract
handleSetKey
- handleSetKey(key: string, value: string): Promise<boolean>
-
Parameters
-
key: string
-
value: string
Returns Promise<boolean>
readFromSet
- readFromSet<T>(key: string, options?: ICacheOptions<T>): Promise<T[]>
-
Parameters
-
key: string
-
options: ICacheOptions<T> = {}
Returns Promise<T[]>
removeFromSet
- removeFromSet<T>(key: string, value: T): Promise<boolean>
-
Returns Promise<boolean>
setKey
- setKey<T>(key: string, value: T): Promise<boolean>
-
Returns Promise<boolean>