/// <summary>
 /// Fetch and return all keys in result
 /// </summary>
 private CommandResult ReadAll()
 {
     return(new SuccessResult <ICollection <string> >
     {
         Result = _store.GetAllKeys()
     });
 }