Exemple #1
0
def _incr(store: typing.Callable, item_key: CountIncrementKey) -> typing.Any:
    """Increments count under exactly matched key.
    
    """
    return store.incrby(item_key.key, item_key.amount)