Stream: implementers
Topic: Paging of results -duration
Daniel Venton (Nov 13 2020 at 20:43):
Say I receive a request that has 100's of results. For paging purposes I return 20 in the Bundle and provide links to get next/previous etc. Now in theory I have that set tracked so that in a few minutes a request for page 2 comes in, I can go to that set and get the next page from the set. My question is how long do I have to keep track of that set identity? Do I need to be able to respond to page 2 request tomorrow, next week, next month... Also if my track of the request has expired, what is the correct response when I can no longer fill a page request (because I forgot the set)?
Grahame Grieve (Nov 13 2020 at 20:46):
server discretion how long to retain. test.fhir.org sets it at 30min. 404 if not found
Daniel Venton (Nov 13 2020 at 20:46):
Thanks!
Last updated: Apr 12 2022 at 19:14 UTC