Example #1
0
 public long Count(ListParam lp)
 {
     return Count(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward);
 }
Example #2
0
 public Dictionary<string, string> ListKeyValues(ListParam lp)
 {
     return ListKeyValues(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward);
 }
Example #3
0
 public List<string> ListKeys(ListParam lp)
 {
     return ListKeys(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward);
 }
Example #4
0
 public Dictionary <string, string> ListKeyValues(ListParam lp)
 {
     return(ListKeyValues(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward));
 }
Example #5
0
 public List <string> DirtyListKeys(ListParam lp)
 {
     return(DirtyListKeys(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward));
 }
Example #6
0
 public long DirtyCount(ListParam lp)
 {
     return(DirtyCount(lp.prefix, lp.startKey, lp.count, lp.skip, lp.forward));
 }