fungover / haze

Key-Value database that talks RESP
MIT License
8 stars 9 forks source link
docker-container html java log4j2 maven-pom redis sonarcloud sonarqube

ITHS

Java CI with Maven workflow badge Release Drafter workflow badge
Open issues workflow badge Pull request workflow badge Open issues workflow badge
Release workflow badge Commit activity workflow badge
Contributors workflow badge Language workflow badge

Haze:

Key-Value database that talks RESP

Topics

java redis docker-container maven-pom sonarqube sonarcloud log4j2 html

Instructions for Haze:

    • Open the command prompt and type in the following:
      docker pull fungover/haze(This downloads the Docker image)
    • Start a new container with the image, mapping the port 6379 on the host to port 6379 on the container: docker run -p 6379:6379 fungover/haze

    • You can change the behaviour of the server by putting in environment variables when starting the container. For example, you can set the server port to 6440. To do this: docker run -p 6440:6440 -e HAZE_PORT=6440 fungover/haze.

Commands:

   Commands that the Server support:

Examples:

  1. SET key1 "Hi"
  2. GET key1
  3. DEL key1
  4. PING "PONG"
  5. SETNX mykey "Hello"
  6. EXISTS key1