Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 371 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 371 Bytes

test-redis

Practice, Go support for Redis.

Simple operations:

  • open DB connection;
  • write a value;
  • read the value.

Dependencies

  • install Go
  • run Redis server like the following: docker run -d -p 6379:6379 redislabs/redismod

Build & run

Update vendor: go mod tidy

Then just run make to run or make build to make binary (placed to "bin" folder).