RaisingStudio.LightningDB 1.0 RaisingStudio.LightningDB

Changelog

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);
}