level 5
### string类型写入
.
await client.set('key', 'string-value')
.
=============================================
.
### string类型读取
.
bin_value = await client.get('key') # 返回值为bytes类型
.
str_value = await client.get('key', encoding='utf-8') # 返回值为str类型
2025年12月08日 16点12分
1