Django multiple admin modifying the same databases -
i'm total noob in django , wondering if it's possible admin doing same thing @ same time ? thing after looking @ django documentation is possible have 2 admins, possible admins task in same databases @ same time ?
thanks help
you didn't made clear want but:
if admin mean superuser yes can have many admins want.
admins can change in database @ same time, if mean changing specific row of specific table @ same time, not possible because of these reasons:
its kinda impossible save @ same time. when both admins tries save anything, last request saved (the first 1 saved changes last request)
and if there important data in database, should block other accesses row till first user has done job , saved changes. (imagine ticket reservation website has block other users allowed order same ticket number till user finishes order or cancel it.)
also if mean 2 different django projects using single database, yes. 2 different admins , above conditions works them too.
Comments
Post a Comment