private static KeyIndex GetKeyIndexFromDisk(ICommands cmds, string id) { var keysBytes = cmds.Load(id); if (keysBytes == null) return new KeyIndex(); return SerializationHelper.Deserialize<KeyIndex>(keysBytes); }