Redis doesn't support doing DEL prefix:key:*, so you have to do a whole scan thing. This shard already does that for flush which is nice, but that blows out your whole cache. I need to do something more like delete_all("posts:#{current_user}:*").
At the moment LuckyCache proper doesn't have a contract for this, so whatever gets added would also need counterparts in the other stores. I just don't know what that looks like yet.
Redis doesn't support doing
DEL prefix:key:*, so you have to do a whole scan thing. This shard already does that forflushwhich is nice, but that blows out your whole cache. I need to do something more likedelete_all("posts:#{current_user}:*").At the moment
LuckyCacheproper doesn't have a contract for this, so whatever gets added would also need counterparts in the other stores. I just don't know what that looks like yet.