-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Describe your enhancement idea
Currently for fetching CICS resources, it does 3 REST calls.
- Generating a cache token and fetching record count
- Getting the first page based on the count
- Invalidate the cache as its the last page (also the first page).
This also happens if the data is less even to paginate. This adds some latency for performing actions on resources or fetching small set of records where pagination is not required.
A suggestion to optimise it is:
- Generating a cache token and fetching record count.
- Check if the record count is less than the paginate limit and fetch the records without NODISCARD.
That will prevent the unwanted additional call.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
New Issues