about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2023-07-15 20:02:13 +0200
committerGitHub <noreply@github.com>2023-07-15 13:02:13 -0500
commite16a75d3be094fe120724e49b53adf64e684ef2c (patch)
treee92a11a4ce040ce9c1292c84eb82cae47679212d /nixos/doc
parent42066dc04df8cb9cf92ccec33d80b233237806e9 (diff)
downloadnixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.tar
nixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.tar.gz
nixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.tar.bz2
nixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.tar.lz
nixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.tar.xz
nixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.tar.zst
nixlib-e16a75d3be094fe120724e49b53adf64e684ef2c.zip
redis: use system jemalloc (#243398)
* redis: use system jemalloc
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2111.section.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2111.section.md b/nixos/doc/manual/release-notes/rl-2111.section.md
index 159881a0ac4c..400eb1062d9a 100644
--- a/nixos/doc/manual/release-notes/rl-2111.section.md
+++ b/nixos/doc/manual/release-notes/rl-2111.section.md
@@ -441,6 +441,8 @@ In addition to numerous new and upgraded packages, this release has the followin
 
 - `pkgs.haskell-language-server` will now by default be linked dynamically to improve TemplateHaskell compatibility. To mitigate the increased closure size it will now by default only support our current default ghc (at the moment 9.0.2). Add other ghc versions via e.g. `pkgs.haskell-language-server.override { supportedGhcVersions = [ "90" "92" ]; }`.
 
+- `pkgs.redis` is now built using the system jemalloc. This disables the experimental active defragmentation feature of redis. Users who require this feature can switch back to redis' vendored version of jemalloc by setting `services.redis.package = pkgs.redis.override { useSystemJemalloc = false; };`.
+
 ## Other Notable Changes {#sec-release-21.11-notable-changes}