Future<Map?> getValue(String key) async { String? ret = await _exec(["GET", prefix + key]); return ret == null ? ret : jsonDecode(ret); }