Skip to content

Instantly share code, notes, and snippets.

@remitaffin
Created September 7, 2019 13:09
Show Gist options
  • Save remitaffin/67d29a6d1ea9081c71a55b178c0dcdba to your computer and use it in GitHub Desktop.
Save remitaffin/67d29a6d1ea9081c71a55b178c0dcdba to your computer and use it in GitHub Desktop.
index_redis.py
import time
import redis
from flask import Flask
app = Flask(__name__)
cache = redis.Redis(host='redis', port=6379)
def get_hit_count():
retries = 5
while True:
try:
return cache.incr('hits')
except redis.exceptions.ConnectionError as exc:
if retries == 0:
raise exc
retries -= 1
time.sleep(0.5)
@app.route('/')
def hello():
count = get_hit_count()
return 'Hello World! I have been seen {} times.\n'.format(count)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment