user_locks.doc
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:3k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. User locks, by Massimo Dal Zotto <dz@cs.unitn.it>
  2. This loadable module, together with my user-lock.patch applied to the
  3. backend, provides support for user-level long-term cooperative locks.
  4. For example one can write:
  5.   select some_fields, user_write_lock_oid(oid) from table where id='key';
  6. Now if the returned user_write_lock_oid field is 1 you have acquired an
  7. user lock on the oid of the selected tuple and can now do some long operation
  8. on it, like let the data being edited by the user.
  9. If it is 0 it means that the lock has been already acquired by some other
  10. process and you should not use that item until the other has finished.
  11. Note that in this case the query returns 0 immediately without waiting on
  12. the lock. This is good if the lock is held for long time.
  13. After you have finished your work on that item you can do:
  14.   update table set some_fields where id='key';
  15.   select user_write_unlock_oid(oid) from table where id='key';
  16. You can also ignore the failure and go ahead but this could produce conflicts
  17. or inconsistent data in your application. User locks require a cooperative
  18. behavior between users. User locks don't interfere with the normal locks
  19. used by postgres for transaction processing.
  20. This could also be done by setting a flag in the record itself but in
  21. this case you have the overhead of the updates to the records and there
  22. could be some locks not released if the backend or the application crashes
  23. before resetting the lock flag.
  24. It could also be done with a begin/end block but in this case the entire
  25. table would be locked by postgres and it is not acceptable to do this for
  26. a long period because other transactions would block completely.
  27. The generic user locks use two values, group and id, to identify a lock,
  28. which correspond to ip_posid and ip_blkid of an ItemPointerData.
  29. Group is a 16 bit value while id is a 32 bit integer which could also be
  30. an oid. The oid user lock functions, which take only an oid as argument,
  31. use a group equal to 0.
  32. The meaning of group and id is defined by the application. The user
  33. lock code just takes two numbers and tells you if the corresponding
  34. entity has been succesfully locked. What this mean is up to you.
  35. My succestion is that you use the group to identify an area of your
  36. application and the id to identify an object in this area.
  37. Or you can just lock the oid of the tuples which are by definition unique.
  38. Note also that a process can acquire more than one lock on the same entity
  39. and it must release the lock the corresponding number of times. This can
  40. be done calling the unlock funtion until it returns 0.