This is how to limit the query of Entities using Xodus API:
final EntityIterable allUsers = txn.getAll(storeName).skip(skip).take(limit);
Question, say the entities stored in the database range from 100k to 500k records, is there a way to filter result based on specific Entity
property?