hset method

  1. @MPI(name: "mesh.cache.hset")
Future<void> hset(
  1. String key,
  2. CacheBody cell, {
  3. Context? ctx,
})

HSet put value in hash

Implementation

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