In Google App Engine the datastore creates a new entry every time you assign it a value. What I Am trying to do is store a simple variable x. When a function is called 1 is added to x and it is stored again (and some other simple stuff that i have the code written already). How would i achieve this is python?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Sounds like you're trying to keep a counter. This tutorial is good for using "sharded counters", that is, a counter that not only works like you expect, but also is much more efficient to update, since you won't have as much contention for the counter object. |
|||
|
|