Flask + Redis
Type in a key and a value and save it to Redis.
Type in a key and fetch the value from Redis.
{% if saved %}
saved
{{ value.decode('utf8') }}
{% endif %}
{% if field %}
The value of {{ field }} is {{ value }}
{% endif %}
{% if fields %}
Keys
{% for field in fields %}
- {{ field.decode('utf8') }}
{% endfor %}
{% endif %}