Skip to content

Commit 8aa75d6

Browse files
authored
chore: enable cache by default with 120s TTL (baserow#5463)
* chore: enable cache by default with 120s TTL * chore: add changelog entry
1 parent 59a69d4 commit 8aa75d6

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

backend/src/baserow/config/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
"baserow.throttling.middleware.ConcurrentUserRequestsMiddleware",
444444
]
445445

446-
BASEROW_CACHE_TTL_SECONDS = int(os.getenv("BASEROW_CACHE_TTL_SECONDS", 0))
446+
BASEROW_CACHE_TTL_SECONDS = int(os.getenv("BASEROW_CACHE_TTL_SECONDS", 120))
447447

448448
PUBLIC_VIEW_AUTHORIZATION_HEADER = "Baserow-View-Authorization"
449449

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "feature",
3+
"message": "Enables caching by default for improved performance",
4+
"issue_origin": "github",
5+
"issue_number": null,
6+
"domain": "core",
7+
"bullet_points": [],
8+
"created_at": "2026-06-04"
9+
}

0 commit comments

Comments
 (0)