fix(docs): add valid cache keys to Redis docs and Apple Silicon warning to Docker page#541
Merged
Merged
Conversation
…ng to Docker page Fixes #428: The Redis configuration doc previously listed STATIC_CONFIG as a valid cache key, which was deprecated and causes startup errors. Added a complete table of valid CacheKeys values with descriptions, plus a callout warning about invalid keys. Fixes #228: The Docker installation page had no mention of the AVX incompatibility with Apple Silicon (M-series) Macs. Added a prominent callout in the Prerequisites section with the docker-compose.override.yml fix to use mongo:4.4.18.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
📦 Next.js Bundle Analysis for librechat.aiThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes two documentation issues:
Issue #428 — Redis doc includes invalid key
STATIC_CONFIGThe Redis configuration doc previously had a vague reference to valid cache keys (
CacheKeysenum) without listing them. Users copying deprecated examples (e.g.STATIC_CONFIG) hit startup errors like:Changes to
content/docs/configuration/redis.mdx:CacheKeysvalues with descriptionsSTATIC_CONFIGis deprecated and will cause errorsIssue #228 — Mac MX series don't support AVX
The Docker installation page had no mention of AVX incompatibility with Apple Silicon (M1/M2/M3/M4) Macs, which causes MongoDB to crash on startup.
Changes to
content/docs/local/docker.mdx:docker-compose.override.ymlwithmongo:4.4.18)Closes #428
Closes #228