Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 427 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 427 Bytes

redis-resource

Install redis services.

Supported Platforms

  • SmartOS

Usage

Include redis-lwrp in your recipe to get the magic:

include_recipe 'redis-lwrp'

Resources

redis 'my-app' do
  version '~> 3.0'
  port 6379
  bind node['ipaddress']
  tcp_keepalive 0
  databases 16

  dbfilename 'dump.rdb'

  save seconds: 900, changes: 1
  save seconds: 300, changes: 100
end