On Jan 25, 4:36 am, Wichert Akkerman <[email protected]> wrote: > Beaker sessions.
either beaker sessions, or just use a beaker session id as the shopping cart / user id you could do a dbtable that has this: table: cart id bigserial primary key not null, session_id char(32) unique , useraccount_id bigint references useraccount(id), allow null in session_id and useraccount_id , so that session carts can be merged into useraccount carts after registration, and vice- versa. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en.
