New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

database_cleaner-redis

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

database_cleaner-redis

  • 2.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

Database Cleaner Adapter for Redis

Build Status Code Climate codecov

Clean your Redis databases with Database Cleaner.

See https://github.com/DatabaseCleaner/database_cleaner for more information.

Installation

# Gemfile
group :test do
  gem 'database_cleaner-redis'
end

Supported Strategies

The redis adapter only has one strategy: the deletion strategy.

Strategy configuration options

:only and :except may take a list of strings to be passed to keys):

# Only delete the "users" key, and keys that start with "cache".
DatabaseCleaner[:redis].strategy = :deletion, { only: ["users", "cache*"] }

# Delete all keys except the "users" key.
DatabaseCleaner[:redis].strategy = :deletion, { except: ["users"] }

Adapter configuration options

#db defaults to Redis.new, but can be specified manually in a few ways:

# Redis URI string:
DatabaseCleaner[:redis].db = "redis://localhost:6379/0"

# Redis connection object:
DatabaseCleaner[:redis].db = Redis.new(url: "redis://localhost:6379/0")

# Back to default:
DatabaseCleaner[:redis].db = :default

See LICENSE for details.

FAQs

Package last updated on 31 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc