I store a lot of events in a DB4O db. The events are timestamped and I've indexed the field. Retrieving (an enumerator of) all events, ordered by timestamp, takes almost no time at all (as they aren't activated). However, what if I only want to retireve every 10. I can loop, but then I'll have to do a count, which takes a significant time. Even returning FirstOrDefault() from the Enumerable (yes, I'm in C# and LINQ) takes time. If the field is indexed, shouldn't it be pretty easy to find the first one in an ordered set?
Yes, I don't have a lot of experience using DB4O, but the app I've written works well. Normally I push millions of events to the db and then retrieve a few based on a short timespan. No problem at all and the app performs very well. Response time for a typical query is less than 100 ms.
Now I want to retrieve a sample of all the events. Every ten, or so ... How do I accomplish that?