public async void Decr() { await DB.Flushall(); var set = await DB.Set("mykey", "10"); Write(set); var decr = await DB.Decr("mykey"); Write(decr); }