Sha256: eea6fa0669a408f9f335bac933a75bb8b7c2acb72a8901c3abf17ba0fb3fbbe9

Contents?: true

Size: 968 Bytes

Versions: 1

Compression:

Stored size: 968 Bytes

Contents

# Embulk output plugin for Redis with Expires

## Generic

### Overview

Thanks for komamitsu, origin version: https://github.com/komamitsu/embulk-output-redis

* **Plugin type**: output
* **Resume supported**: no

## Configuration

- **host**: Hostname of the Redis server (string, default: "localhost")
- **port**: Port of the Redis server (integer, default: 6379)
- **db**: Database number (integer, default: 0)
- **key_prefix**: Key prefix for input/output plugin (string, default:"")
- **encode**: Encoding in Redis (string, default: "json")
 - json: Stored as a JSON string. GET/SET commands can access it
 - hash: Stored as a Hash. H* commands such as HMGET/HMSET can access it
- **key**: Column name used for a key in Redis (string, required)
- **expires**: redis key expires second (integer, default: 0)

### Example

```yaml
out:
  type: redisWithExpires
  host: localhost
  port: 6379
  db: 0
  key: id
  key_prefix: user_
  encode: json
  expires: 60
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
embulk-output-redisWithExpires-0.1.1 README.md