I am developing a django-nonrel project and deploying it on Google app engine.
One function is to store many long lists of numbers, e.g., stock prices over time. The length of the list may be around 3000. Possible operations on the list are appending new numbers, deleting oldest numbers, and occasionally retrieving all the numbers (for plotting).
What is the efficient way to store such list in my situation? File seems the best way to me. But Google App Engine disallow creating a file for writing.
To my knowledge, Django-nonrel has ListField. But I guessed that a ListField of length 3000 is not efficient.