FOUR-31921 Implement Request Cache and Request Deduplication Layer for ProcessMaker.apiClient#8877
Open
devmiguelangel wants to merge 5 commits into
Open
FOUR-31921 Implement Request Cache and Request Deduplication Layer for ProcessMaker.apiClient#8877devmiguelangel wants to merge 5 commits into
devmiguelangel wants to merge 5 commits into
Conversation
…detailed documentation
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Issue & Reproduction Steps
Implement Request Cache and Request Deduplication Layer for ProcessMaker.apiClient
Solution
Implemented a lightweight cache and request-deduplication layer for ProcessMaker.apiClient.
The cache supports opt-in GET response caching with a default 5-second TTL, per-request TTL overrides, global enable/disable controls, cache invalidation by URL or pattern, lazy expiration cleanup, and optional debug logging.
Concurrent identical GET requests now share one in-flight Promise and produce a single network request. Completed responses are cached only after successful requests; non-GET and failed requests bypass caching.
Expanded unit coverage for TTL expiry, custom TTLs, failures, non-GET behavior, global cache controls, per-request opt-out, key isolation by request configuration, invalidation, debug logs, and concurrent request deduplication.
Validation
npx jest --runInBand --testMatch '**/tests/js/apiClientCache.test.js'Related Tickets & Packages
FOUR-31921
Code Review Checklist