I created a region(key: [id, date]) with a PartitionResolver based on date, which means the region is bucketed/partitioned by date. now in function implementation, I want to filter certain date partitions so that I don't have to loop over Map<IdDate, Entity> regionData
to filter data for particular dates. The idea is to filter date partitions by straightaway discarding irrelevant buckets which makes the filtering faster.
I found that there is an option to use @Filter
annotation in functions, but this seems to expect a set of keys. But I would like to provide a set of partition keys (dates in my use case).
Is this possible in spring geode?