> I get an error for orderby=~db.test.field - is it just reverse order > that is not supported? I didn't see this mentioned in the manual.
Reverse order is supported, orderby=~db.test.field, orders descending where 'field' is a field in your table. eg. orderby=~db.test.title to order by title field decending. > for a standard database (eg postgres) "belongs" would be faster, > right? Because I am using this same code for both GAE and a Linux box. Yes a relational database can do this in 1 query, GAE would require N queries or 1 batch get by id. > insert/update is already supported on GAE, so what would get/put add? Using batch get/put/delete would allow selecting, inserting/updating, and deleting of multiple records (up to 500) with a single database request rather than 500 requests. Robin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---

