Hey Cyprien, there is nothing that directly compares to RIDs or what I would call physical pointers in ArangoDB as far as I can tell. There are some alternatives however. For example, you could add an attribute with a numeric value or an ISO date an create a sorted index over it. If you want to process all documents, then you don't even need pagination but should use a cursor (possibly with a higher than normal TTL) to receive the documents in batches until the cursor is exhausted. In 3.4, there is a new feature for streaming cursors. If you enable it, then documents will be processed on-the-fly (instead of the entire result being built up in memory and only then send to the client). So the initial response will be fast and you can incrementally fetch the results. The same is available in arangoexport, if you really want to export the entire collection to e.g. JSON or CSV, optionally using an AQL query to pre-process the data.
Best, Simran -- You received this message because you are subscribed to the Google Groups "ArangoDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
