Skip to content

Commit

Permalink
Merge pull request #1118 from uselagoon/redis-400mb
Browse files Browse the repository at this point in the history
Increase default Redis maxmemory to 400MB (from 100MB)
  • Loading branch information
tobybellwood authored Sep 30, 2024
2 parents b944f4e + 9b2053d commit e112af3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions images/redis/conf/redis.conf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Redis 4.0 configuration file for non-persistent cache
# see https://raw.githubusercontent.com/antirez/redis/4.0/redis.conf for all possible configs.
# Redis configuration file for non-persistent cache
# see https://raw.githubusercontent.com/redis/redis/refs/tags/7.2.5/redis.conf for all possible configs.

loglevel ${LOGLEVEL:-notice}
databases ${DATABASES:-1}

maxmemory ${MAXMEMORY:-100mb}
maxmemory ${MAXMEMORY:-400mb}
maxmemory-policy ${MAXMEMORYPOLICY:-allkeys-lru}

# allow other hosts to connect to us
Expand Down

0 comments on commit e112af3

Please sign in to comment.