incr method

  1. @MPI(name: "mesh.cache.incr")
Future<int?> incr(
  1. String key,
  2. int value, {
  3. Context? ctx,
})

Incr the cache of expire time.

Implementation

@MPI(name: "mesh.cache.incr")
Future<int?> incr(String key, int value, {Context? ctx}) {
  throw UnimplementedError('incr() has not been implemented.');
}