Looking for a Set with TTL and capacity in Effect library?
Does effect have any data structure like a Cache but where you can instead push elements? I mean, I can very easily just use a cache and use the "get" as a pusher given that I only need to know if the value exists already or not, so I can first check if the value exists, and if not, invoke the getter which can be a simple constTrue function. But what I really need is something simpler, it is just a Set with a ttl and a capacity so it doesn't grow too big
