IRedisClientFacade
Assembly: ServiceStack.dll
View Source
Declaration
public interface IRedisClientFacade : IDisposable
Methods
GetAllItemsFromSet(String)
View Source
Declaration
HashSet<string> GetAllItemsFromSet(string setId)
Returns
System.Collections.Generic.HashSet<System.String>
Parameters
Type | Name |
---|---|
System.String | setId |
Store<T>(T)
View Source
Declaration
void Store<T>(T item)
Parameters
Type | Name |
---|---|
<T> | item |
Type Parameters
T
DeleteById<T>(String)
View Source
Declaration
void DeleteById<T>(string id)
Parameters
Type | Name |
---|---|
System.String | id |
Type Parameters
T
GetValueFromHash(String, String)
View Source
Declaration
string GetValueFromHash(string hashId, string key)
Returns
System.String
Parameters
Type | Name |
---|---|
System.String | hashId |
System.String | key |
SetEntryInHash(String, String, String)
View Source
Declaration
void SetEntryInHash(string hashId, string key, string value)
Parameters
Type | Name |
---|---|
System.String | hashId |
System.String | key |
System.String | value |
RemoveEntryFromHash(String, String)
View Source
Declaration
void RemoveEntryFromHash(string hashId, string key)
Parameters
Type | Name |
---|---|
System.String | hashId |
System.String | key |
AddItemToSet(String, String)
View Source
Declaration
void AddItemToSet(string setId, string item)
Parameters
Type | Name |
---|---|
System.String | setId |
System.String | item |
As<T>()
View Source
Declaration
ITypedRedisClientFacade<T> As<T>()
Returns
ServiceStack.Auth.ITypedRedisClientFacade<T>
Type Parameters
T