You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Features
- Add `spring-requirements` script
- Add `Advanced filtering` to examples
- Add new rate limits
- Add example to API's
- Add `data_count` to overview
- Add name and status to SDK's table
Changes
- Update examples
- Remove docs about cache invalidation
*Bump version to 1.3.0*
*Upgrade to yarn 4.X*
"description": "With time running out -- and an assassin close behind -- Hopper's crew races back to Hawkins, where El and the kids are preparing for war.",
"description": "Join Hopper and the kids for bruising missions around Hawkins - and the Upside Down - in this stylized retro adventure filled with collectibles. It's 1984 all over again. Experience an action adventure game just like the ones our heroes would have played back in the day. Explore Hawkins and its surroundings. See your favorite locations like Mirkwood Forest and Hawkins Lab. Uncover exciting areas you've never seen before! Solve puzzles with the unique abilities of each character. Lucas can nail anything with his Wrist Rocket. Nancy has an entire collection of bats to swing this time. Collect all the Eggos and gnomes you can lay your hands on. You never know what they might unlock.",
"description": "When a young boy vanishes, a small town uncovers a mystery involving secret experiments, terrifying supernatural forces and one strange little girl.",
Copy file name to clipboardExpand all lines: Guides/Caching.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,16 @@
2
2
icon: database
3
3
---
4
4
5
-
By default we cache the results of each request you make for **1 hour**. If you make the same request again, for example, we'll serve the cached result.
5
+
<!--By default we cache the results of each request you make for **1 hour**. If you make the same request again, for example, we'll serve the cached result.-->
6
6
7
7
The cache is shared across all users. If two users run a query with the same requests—even with different auth tokens—the cached results are still returned.
8
8
9
9
-**Example¹**: If you request such as `/api/v1/episodes?duration=>3000000` and a second request with `/api/v1/episodes?duration=>3000000`, the API will define as **equals** and will _return the cached data_.
10
10
-**Example²**: If you request such as `/api/v1/episodes?episode_num=1` and a second request with `/api/v1/episodes?episode_num=2`, the API will define as **different** and will _create a cache for each one_.
11
11
12
-
!!!Note
12
+
<!--!!!Note
13
13
The cache will be invalidated after **1 hour of inactivity**
14
-
!!!
14
+
!!!-->
15
15
16
16
You can identify if a result has been cached by checking the `ETag` header on the API response.
0 commit comments