Skip to content

v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Apr 12:09
· 106 commits to main since this release

Redka aims to reimplement the good parts of Redis with SQLite, while remaining compatible with the Redis API. This release adds support for hash commands.

All commands are available via the Redis wire protocol (RESP) and the Go API.

InstallationUsageRoadmap

Hashes

Redka supports the following hash-related commands:

  • HDEL - Deletes one or more fields and their values.
  • HEXISTS - Determines whether a field exists.
  • HGET - Returns the value of a field.
  • HGETALL - Returns all fields and values.
  • HINCRBY - Increments the integer value of a field.
  • HINCRBYFLOAT - Increments the float value of a field.
  • HKEYS - Returns all fields.
  • HLEN - Returns the number of fields.
  • HMGET - Returns the values of multiple fields.
  • HMSET - Sets the values of multiple fields.
  • HSCAN - Iterates over fields and values.
  • HSET - Sets the values of one ore more fields.
  • HSETNX - Sets the value of a field when it doesn't exist.
  • HVALS - Returns all values.