Table 3.1. .NET Client Library
| Method | Title |
|---|---|
object.ExecuteGet(key, expiry) | Get a get operation result and update the expiration time for a given key |
object.ExecuteGet(key) | Get a single value and return a get operation result |
object.ExecuteGet(keyarray) | Get multiple get operation result values |
object.ExecuteGetWithLock(key [, getl-expiry ]) | Get the value for a key, lock the key from changes |
object.ExecuteGetWithLock-expiresat(key [, getl-expiry ]) | Get the value for a key, lock the key from changes |
object.ExecuteUnlock(key [, getl-expiry ]) | Get the value for a key, lock the key from changes |
object.Get(key, expiry) | Get a value and update the expiration time for a given key |
object.Get(key) | Get a single value |
object.Get(keyarray) | Get multiple values |
object.GetWithCas(key) | Get a single value with Cas |
object.GetWithLock(key [, getl-expiry ]) | Get the value for a key, lock the key from changes |
object.GetWithLock-expiresat(key [, getl-expiry ]) | Get the value for a key, lock the key from changes |
object.KeyExists(key) | Check whether key exists without attempting to get value |
object.Unlock(key [, getl-expiry ]) | Get the value for a key, lock the key from changes |