keys method

  1. @MPI(name: "mesh.cache.keys")
Future<List<String>?> keys(
  1. String pattern, {
  2. Context? ctx,
})

Keys return the cache key set. 获取缓存中的KEY集合.

Implementation

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