In Google App Engine, how can I work with eventual consistency in handling form submissions?
- 阅读更多 关于 In Google App Engine, how can I work with eventual consistency in handling form submissions?
问题 I've noticed that, with eventual consistency, the common form-processing workflow that I am used to (submit -> create/update record -> redirect -> reload) doesn't work. Upon redirect, the new record (probably) won't be available for display. How should I handle forms so that updates are displayed upon reload? I could try to use strong consistency, but as the App Engine documentation notes, updates are limited to one update per second. So how can I process a form providing immediate user