Skip to content

Commit

Permalink
Try enabling function cache on arm again
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan committed Jan 23, 2025
1 parent 749534d commit a88056d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion edb/server/config/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ def effective(cls, value: str | None) -> QueryCacheMode:
# Persistent cache disabled for now by default on arm64 linux
# because of observed problems in CI test runs.
if platform.system() == 'Linux' and platform.machine() == 'arm64':
rv = QueryCacheMode.InMemory
# rv = QueryCacheMode.InMemory
rv = QueryCacheMode.PgFunc
else:
rv = QueryCacheMode.PgFunc
return rv

0 comments on commit a88056d

Please sign in to comment.