Sha256: 25280bf8152a91bfc41df70cbe912738e99386eaf3b18790927ce4ba6f564d37

Contents?: true

Size: 957 Bytes

Versions: 1

Compression:

Stored size: 957 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: redis
  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.0 README.md