[web2py] GAE and cursors

2011-02-18 Thread kkirsanov
Hi. I need to send a lot of messages. On GAE default framework it could be done by using cursosrs and taskqueue(to overcome 15s limit): if cursor != '': Q = db.Query(models.Partner).with_cursor(cursor) else: Q = db.Query(models.Partner) for partner in Q.fetch(10): mail.se

[web2py] newby question

2011-01-14 Thread kkirsanov
I`m creating a complicated application. It will deal with users, their tickets, and for example, sms-messages and other stuff (30-40 tables) 1) How I can extend standard `auth` table to store more fields (phone, money, etc,). Should I create new table with all that data and link it to original aut