Hello, people
I'm using the following example from the guide website:
List<Car> cars = ofy().load().type(Car.class).filter("year in", yearList).list();
but i'm getting an error:
Splitting the provided query requires that too many subqueries are merged in memory.
I looked for it and i read that its just allowed to use a list (yearlist) with maximum 30 elements, but in my case i can have much much more than it. Actually im using another query, but with the same idea. I'm using a query to get all the activities from my friends.
Some people also suggested to bring this issue to be calculated in memory, but it wont be so efficient.
Any idea how can i solve this problem?
Thanks in advance ;)