npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-memory-redis-isolated

v0.3.0

Published

Redis-based chat memory node for n8n AI agents with user isolation for queue mode

Downloads

2,324

Readme

n8n-nodes-memory-redis-isolated

This is an n8n community node that provides Redis-based chat memory for AI agents in n8n queue mode with multiple workers. Simple in-memory chat history does not work reliably in queue mode because different workers cannot share memory. This node uses Redis as persistent storage to ensure chat history is accessible across all workers.

n8n is a fair-code licensed workflow automation platform.

Installation

Community Nodes (Recommended)

  1. In n8n, go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-memory-redis-isolated
  4. Accept the installation

Manual Installation (Local Development)

For n8n v1.0+:

cd ~/.n8n/custom-nodes
npm install n8n-nodes-memory-redis-isolated

For n8n v2.0+ (Docker/Self-hosted):

  1. Mount the volume to /home/node/.n8n/custom-nodes
  2. Install the package inside that directory

Development

  1. Clone the repository
  2. Install dependencies: npm install
  3. Start n8n with the node loaded:
    npm run dev
  4. The node will appear as Redis Chat Memory (Isolated) in the AI Agent node's Memory selector.

Troubleshooting

  • Node not showing up? Ensure you are looking in the Memory input of the AI Agent node, not just the main node list.
  • Can't find the node? In the main node list, search for "isolated" to find this node. Searching for "redis" may not show it due to n8n's search indexing prioritizing built-in nodes.
  • Connection failed? Verify your Redis credentials and network connectivity.
  • Port conflicts? If npm run dev fails, check if another n8n instance is running on port 5678.

Features

  • Queue Mode Essential: Solves the critical issue where simple memory nodes fail in queue mode with multiple workers. Redis provides shared persistent storage accessible by all workers.
  • Workflow Isolation: Chat histories are isolated per workflow using hashed workflow IDs
  • Enhanced Security with Dedicated Credentials: Unlike the built-in Redis Chat Memory node, this node uses its own credential type that is NOT compatible with Redis operation nodes. This prevents users from using the same credential with a Redis node to run KEYS * or GET commands to list and read other workflows' chat history. The built-in Redis Chat Memory shares credentials with Redis operation nodes, creating a potential security risk.
  • Session Management: Supports session TTL and context window length
  • Secure: Workflow IDs are hashed (SHA-256) and only the first 10 characters are used as prefix

Operations

This node provides a single operation: Redis Chat Memory (Isolated)

The node stores and retrieves chat history for AI agents with the following parameters:

  • Session ID: Session identifier for the conversation
  • Context Window Length: Number of previous messages to keep in memory (default: 10)
  • Session Time To Live (Seconds): How long the session should be stored in seconds (default: 86400 = 24 hours, maximum: 86400, minimum: 1). All sessions must have an expiration.

Credentials

This node uses a dedicated Redis Memory (Isolated) credential type that is NOT shared with the standard Redis operation node.

Use Queue Redis (Default)

By default, the node has "Use Queue Redis" enabled, which automatically uses your n8n queue Redis configuration without requiring any credentials. This is the recommended setup for queue mode deployments.

When enabled, the node uses these environment variables:

  • QUEUE_BULL_REDIS_HOST
  • QUEUE_BULL_REDIS_PORT
  • QUEUE_BULL_REDIS_DB (the node uses this + 1 to avoid conflicts)
  • QUEUE_BULL_REDIS_USERNAME
  • QUEUE_BULL_REDIS_PASSWORD

Custom Redis Credentials

To use a different Redis instance, disable "Use Queue Redis" and configure custom credentials:

  1. In n8n, go to CredentialsNew
  2. Search for "Redis Memory (Isolated)"
  3. Configure the following:
    • Host: Redis server hostname (default: localhost)
    • Port: Redis server port (default: 6379)
    • Password: Redis password (if required)
    • User: Redis username (leave blank for password-only auth)
    • Database Number: Redis database number (default: 0)
    • SSL: Enable SSL/TLS connection
    • Disable TLS Verification: Only for self-signed certificates (insecure)

Azure Cache for Redis

When using Azure Cache for Redis, configure the credentials as follows:

  • Host: Your Azure Redis hostname (e.g., yourname.redis.cache.windows.net)
  • Port: 6380 (Azure uses SSL by default)
  • Password: Use your Azure Redis Access Key (Primary or Secondary)
  • User: Leave blank (Azure Redis uses password-only authentication)
  • SSL: Enable this option (required for Azure)
  • Database Number: 0 (or your preferred database)

Prerequisites:

  • A running Redis server (version 4.0+)
  • Redis credentials with read/write access

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with: n8n 1.x
  • Node.js: 18.x or higher
  • Redis: 4.0 or higher

Usage

Basic Setup

  1. Add an AI Agent node to your workflow
  2. Add the Redis Chat Memory (Isolated) node
  3. Connect it to your AI Agent's memory input
  4. Configure the credentials
  5. Set the Session ID parameter

Example Configuration

// Session ID - can be conversation-specific or user-specific
{{ $json.sessionId }}
// or
{{ $json.conversationId }}

Queue Mode

This is the primary use case for this node. In n8n queue mode deployments:

  • Multiple worker processes handle requests in parallel
  • Simple in-memory chat history nodes (like "Simple Memory") do not work because each worker has its own isolated memory
  • Workers cannot share in-memory data, causing chat history to be lost or inconsistent
  • Redis provides a shared persistent storage layer that all workers can access
  • This ensures chat history is maintained correctly regardless of which worker processes the request

How Workflow Isolation Works

The node adds a workflow-specific prefix to the session key to ensure isolation:

  1. Hashing: The workflow ID is hashed using SHA-256
  2. Prefix: Only the first 10 characters of the hash are used as a prefix
  3. Key Format: Redis keys are stored as {workflowHash}:{sessionId}

The workflow ID prefix is added to your session key, creating a unique Redis key per workflow.

Example:

Workflow ID: "abc123xyz"
SHA-256 Hash: "96cae35ce8a9b0244178bf28e4966c2ce1b8385723a96a6b838858cdd6ca0a1e"
Prefix (first 10 chars): "96cae35ce8"
Session ID: "conv456" (your input)
Final Redis Key: "96cae35ce8:conv456"

Security Benefits:

  • Cross-workflow isolation: Different workflows with the same session ID get different Redis keys, preventing data leaks between workflows
  • Protection against poor session keys: Even if you use a session key with low randomness (e.g., "user1", "session1"), the workflow prefix ensures that different workflows cannot access each other's chat history. This prevents accidental or malicious access to other workflows' conversations.
  • Consistent isolation: The workflow ID is consistent across all queue workers, ensuring reliable isolation in distributed environments
  • User-controlled granularity: Within a workflow, you control isolation via the session ID (e.g., per user, per conversation)
  • Scalable and performant: Hash-based prefixing is fast and doesn't require additional lookups

Resources

Version History

0.1.0 (Initial Release)

  • Redis-based chat memory with user isolation
  • Dedicated credential type
  • Support for queue mode deployments
  • Configurable context window and session TTL