Created
September 23, 2013 15:57
-
-
Save co-dh/6672706 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from uwsgi import * | |
def application(env, start_response): | |
start_response('200 OK', [('Content-Type','text/html')]) | |
cache_update('hello', 'world', 0, 'users') | |
v = cache_get('hello', '[email protected]:3032') | |
#v = cache_get('hello', 'users') | |
print v | |
return "Hello World" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment