[PR #1053] [CLOSED] feat(checkpoint): redis saver #1205

Closed
opened 2026-02-15 19:17:39 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1053
Author: @rrozza-apolitical
Created: 3/27/2025
Status: Closed

Base: mainHead: main


📝 Commits (2)

📊 Changes

17 files changed (+6547 additions, -1910 deletions)

View changed files

libs/checkpoint-redis/.env.example (+6 -0)
libs/checkpoint-redis/.eslintrc.cjs (+67 -0)
libs/checkpoint-redis/.gitignore (+7 -0)
libs/checkpoint-redis/.prettierrc (+19 -0)
libs/checkpoint-redis/.release-it.json (+13 -0)
libs/checkpoint-redis/README.md (+138 -0)
libs/checkpoint-redis/docker-compose.yml (+8 -0)
libs/checkpoint-redis/jest.config.cjs (+20 -0)
libs/checkpoint-redis/jest.env.cjs (+12 -0)
libs/checkpoint-redis/langchain.config.js (+21 -0)
libs/checkpoint-redis/package.json (+90 -0)
libs/checkpoint-redis/src/index.ts (+736 -0)
libs/checkpoint-redis/src/tests/index.test.ts (+628 -0)
libs/checkpoint-redis/tsconfig.cjs.json (+8 -0)
libs/checkpoint-redis/tsconfig.json (+24 -0)
libs/checkpoint-redis/turbo.json (+11 -0)
📝 yarn.lock (+4739 -1910)

📄 Description

Implementation of a LangGraph.js CheckpointSaver that uses Redis.

The RedisSaver class supports Redis single-node and cluster clients.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs/pull/1053 **Author:** [@rrozza-apolitical](https://github.com/rrozza-apolitical) **Created:** 3/27/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (2) - [`4fe60ec`](https://github.com/langchain-ai/langgraphjs/commit/4fe60ecbb194d266504c05929951d17106e19710) checkpoint redis library - [`e9af241`](https://github.com/langchain-ai/langgraphjs/commit/e9af241bc4e8833ffc21168a32a14845f7bc3a55) fixing commands ### 📊 Changes **17 files changed** (+6547 additions, -1910 deletions) <details> <summary>View changed files</summary> ➕ `libs/checkpoint-redis/.env.example` (+6 -0) ➕ `libs/checkpoint-redis/.eslintrc.cjs` (+67 -0) ➕ `libs/checkpoint-redis/.gitignore` (+7 -0) ➕ `libs/checkpoint-redis/.prettierrc` (+19 -0) ➕ `libs/checkpoint-redis/.release-it.json` (+13 -0) ➕ `libs/checkpoint-redis/README.md` (+138 -0) ➕ `libs/checkpoint-redis/docker-compose.yml` (+8 -0) ➕ `libs/checkpoint-redis/jest.config.cjs` (+20 -0) ➕ `libs/checkpoint-redis/jest.env.cjs` (+12 -0) ➕ `libs/checkpoint-redis/langchain.config.js` (+21 -0) ➕ `libs/checkpoint-redis/package.json` (+90 -0) ➕ `libs/checkpoint-redis/src/index.ts` (+736 -0) ➕ `libs/checkpoint-redis/src/tests/index.test.ts` (+628 -0) ➕ `libs/checkpoint-redis/tsconfig.cjs.json` (+8 -0) ➕ `libs/checkpoint-redis/tsconfig.json` (+24 -0) ➕ `libs/checkpoint-redis/turbo.json` (+11 -0) 📝 `yarn.lock` (+4739 -1910) </details> ### 📄 Description Implementation of a LangGraph.js CheckpointSaver that uses Redis. The RedisSaver class supports Redis single-node and cluster clients. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 19:17:39 -05:00
yindo closed this issue 2026-02-15 19:17:39 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#1205