(k string, cas uint64)
| 148 | return lds.dataStore.Delete(k) |
| 149 | } |
| 150 | func (lds *LeakyDataStore) Remove(k string, cas uint64) (casOut uint64, err error) { |
| 151 | return lds.dataStore.Remove(k, cas) |
| 152 | } |
| 153 | func (lds *LeakyDataStore) WriteCas(k string, exp uint32, cas uint64, v interface{}, opt sgbucket.WriteOptions) (uint64, error) { |
| 154 | return lds.dataStore.WriteCas(k, exp, cas, v, opt) |
| 155 | } |