我在使用 Firefox 12.0 和 GAE 上的 Python 处理程序时遇到了一些奇怪的行为。
当我在 Firefox 中请求此处理程序时,它会运行 3 次——但仅在它返回 GIF 时。
我目前正在通过基于处理程序的查询字符串设置一个内存缓存条目来解决它。我希望这将防止相同信息的重复 db.put()s。
这是一个有效的 URL:http ://test-o-tron.appspot.com——注意您可以更改这些查询字符串参数:
- 格式(“gif”或“html”)
- hack(“真”或“假”)
- mkey_suffix(用于轻松重置计数器的内存缓存键中的字符串)
这是代码:
from google.appengine.api import urlfetch, memcache
from google.appengine.ext import db
import webapp2, random
class MainHandler(webapp2.RequestHandler):
def get(self):
#If user doesn't have an mkey_suffix, make one
if self.request.get("mkey_suffix") == "":
self.redirect("/?format=gif&hack=false&mkey_suffix=" +
self.request.remote_addr +
"." + str(random.randint(0, 1000)))
OUTPUT_GIF = self.request.get("format") == "gif"
USE_HACK = self.request.get("hack") == "true"
#Memcache keys
mkey_suffix = self.request.get("mkey_suffix")
mkey_log = "log" + mkey_suffix
mkey_hack = "hack" + mkey_suffix
#Count the number of requests using memcache
if memcache.get(mkey_log) is None:
memcache.set(mkey_log, 0, 60)
counter = memcache.get(mkey_log)
#Hack!! Only handle a given request ONCE every second
if not USE_HACK or memcache.get(mkey_hack) is None:
memcache.set(mkey_hack, True, time=1)
#Show I'm not crazy
counter += 1
memcache.set(mkey_log, counter, 60)
#Return counter value
if OUTPUT_GIF:
self.response.headers["Content-Type"] = "image/gif"
img_url = "http://placehold.it/{counter}x{counter}"
img_url = img_url.format(counter=str(400 + counter))
img_data = urlfetch.Fetch(img_url).content
content = db.Blob(img_data)
else:
#Output HTML
self.response.headers["Content-Type"] = "text/html"
content = "Counter == " + str(counter)
self.response.out.write(content)
app = webapp2.WSGIApplication([('/', MainHandler)], debug=True)