1
0
Fork 0
arangodb/Documentation/Books/Users/HttpAqlQueryCursor
Jan Steemann 1f5e047486 query cache, now with result limitations, HTTP and JavaScript APIs 2015-06-27 01:12:32 +02:00
..
AccessingCursors.mdpp fixed documentation 2015-04-20 16:41:37 +02:00
QueryResults.mdpp query cache, now with result limitations, HTTP and JavaScript APIs 2015-06-27 01:12:32 +02:00
README.mdpp refactored cursor API, added export API 2015-03-30 18:03:42 +02:00

README.mdpp

!CHAPTER HTTP Interface for AQL Query Cursors

!SUBSECTION Database Cursors 

This is an introduction to ArangoDB's HTTP Interface for Queries. Results of AQL
and simple queries are returned as cursors in order to batch the communication
between server and client. Each call returns a number of documents in a batch
and an indication if the current batch has been the final batch. Depending on
the query, the total number of documents in the result set might or might not be
known in advance. In order to free server resources the client should delete the
cursor as soon as it is no longer needed.

To execute a query, the query details need to be shipped from the client to
the server via an HTTP POST request.