예제 #1
0
파일: Client.cs 프로젝트: scalien/keyspace
 public long Count(ListParam lp)
 {
     return Count(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward);
 }
예제 #2
0
파일: Client.cs 프로젝트: scalien/keyspace
 public Dictionary<string, string> ListKeyValues(ListParam lp)
 {
     return ListKeyValues(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward);
 }
예제 #3
0
파일: Client.cs 프로젝트: scalien/keyspace
 public List<string> ListKeys(ListParam lp)
 {
     return ListKeys(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward);
 }
예제 #4
0
 public Dictionary <string, string> ListKeyValues(ListParam lp)
 {
     return(ListKeyValues(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward));
 }
예제 #5
0
 public List <string> DirtyListKeys(ListParam lp)
 {
     return(DirtyListKeys(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward));
 }
예제 #6
0
 public long DirtyCount(ListParam lp)
 {
     return(DirtyCount(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward));
 }