crypto-hacker
Results
2
comments of
crypto-hacker
> 获取数据的时候加了缓存,修改数据没有缓存,如果数据在缓存期间被修改了呢? Redis与数据库的双写一致性了解一下
maybe you can implement it like this: ```rust trait QrySoftDel { async fn qry_all(self, db: &C) -> Result; } trait UptSoftDel { async fn upt_all(self, db: &C) -> Result; }...