Does anyone have any advice for the best way to implement flags? For 
example, auth_user.do_not_email=True

Some options:
1) db.flags.do_not_email = True
2) db.auth_user.do_not_email = True
3) db.auth_user.flags={'do_not_email': True}
4) others?

Does the "list" data type help out?

I know in the "old days" people used bitwise operations for flags. Is that 
still done? Thanks for any suggestions.

Reply via email to