This topic is locked
[SOLVED]

 Impact of audit and record locking

3/1/2010 2:31:19 PM
PHPRunner General questions
A
aramuni author

Hi,
How is the impact of the implementation of the audit and record locking in the application speed?

Sergey Kornilov admin 3/1/2010

Not much.
Audit adds one more write to database or to file when logs in/out or modifies data.
Record locking involves two extra writes to the database when record is edited (lock/unlock) and a few reads if other users are trying to access the locked record.
In other words you should not see any performance decrease unless you have thousands of simultaneous users.

A
aramuni author 3/1/2010

Tks!