-
Notifications
You must be signed in to change notification settings - Fork 25
Closed
Labels
Description
Currently the XHR request gets cached as it could be reused in structured file formats that allow to adress multiple objects within one resource. However, the cached responses claim a lot of memory.
The desired behaviour:
- Don't cache responses for unstructured file formats (e.g. OpenCTM, xml3d-json)
- Add heuristic that manages freeing the response for structured resources. A simple one could be to free the resources once there is no request in the queue that requires the resource. Another options include using a LRU or LFU strategy