func (s *MemoryStore) Increment(key string, value ...int) (int, error) {
    s.mu.RLock()
    defer s.mu.RUnlock()

    var by = 1