Skip to main content
Workspaces help you organize your Redis connections and keep different environments separate. Each workspace contains its own connections, alerts, and settings.

What is a Workspace?

A workspace is a container within an organization that groups related Redis connections together. Common use cases:
  • By environment: Development, Staging, Production
  • By project: Project A, Project B
  • By team: Backend Team, Data Pipeline Team

Creating a Workspace

1

Navigate to your organization

Select your organization from the sidebar.
2

Click Create Workspace

Click the Create Workspace button.
3

Enter workspace details

FieldDescriptionExample
NameDisplay name for the workspaceProduction
SlugURL-friendly identifier (auto-generated)production
4

Save

Click Create to create the workspace.
Slugs can only contain lowercase letters, numbers, and hyphens. They must be unique within your organization.

Workspace Limits

The number of workspaces you can create depends on your subscription plan:
PlanWorkspaces
Free1
Pro5
Enterprise10
Need more workspaces? Contact us about Enterprise options.

Workspace Contents

Each workspace contains:

Redis Connections

Connect to one or more Redis instances within a workspace. See Connection Overview for setup instructions.
PlanConnections per Workspace
Free1
Pro5
Enterprise10

Alerts

Configure alerts for queues within the workspace. Alerts are scoped to a specific connection and queue.
Alerts require a Pro or Enterprise plan.

Workspace Settings

Rename Workspace

  1. Go to the workspace
  2. Click Settings in the sidebar
  3. Update the Name field
  4. Click Save

Change Slug

  1. Go to workspace Settings
  2. Update the Slug field
  3. Click Save
Changing the slug will change all URLs for the workspace. Update any bookmarks or shared links.

Delete Workspace

  1. Go to workspace Settings
  2. Click Delete Workspace
  3. Type the workspace name to confirm
  4. Click Delete
Deleting a workspace permanently removes all connections and alerts. This action cannot be undone.

Workspace Members

Workspace access is inherited from organization membership. All organization members can access all workspaces within that organization.

Member Roles

RolePermissions
OwnerFull access: manage connections, alerts, settings, delete workspace
MemberView and interact: view queues and jobs, retry/remove jobs (if read-write)

Best Practices

Environment Separation

Create separate workspaces for each environment:
Organization: My Company
├── Workspace: Development
│   └── Connection: localhost Redis
├── Workspace: Staging
│   └── Connection: staging.redis.example.com
└── Workspace: Production
    └── Connection: prod.redis.example.com
Keep production and development separate to prevent accidental operations on production queues.

Consistent Naming

Use clear, consistent naming conventions:
GoodAvoid
productionprod
stagingstg
developmentdev-1
project-apiapi

Use Read-Only for Production

When setting up production connections, consider using Read-Only access mode to prevent accidental job modifications.

Switching Workspaces

To switch between workspaces:
  1. Click the workspace name in the sidebar
  2. Select a different workspace from the dropdown
  3. Or use the organization dashboard to see all workspaces

Next Steps