RaisingStudio.LightningDB 1.0 Download RaisingStudio.LightningDB
public interface ILightningDBService : ISingletonDependency
{
long GetEntriesCount();
bool ContainsKey(byte[] key);
bool TryGet(byte[] key, out byte[] value);
byte[] Get(byte[] key);
void Put(byte[] key, byte[] value, PutOptions options = PutOptions.None);
void Delete(byte[] key);
}