README
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. $Header: /usr/local/cvsroot/pgsql/src/backend/storage/ipc/README,v 1.1.1.1 1996/07/09 06:21:54 scrappy Exp $
  2. Mon Jul 18 11:09:22 PDT 1988  W.KLAS
  3. Cache invalidation synchronization routines:
  4. ===========================================
  5. The cache synchronization is done using a message queue. Every
  6. backend can register a message which then has to be read by
  7. all backends. A message read by all backends is removed from the 
  8. queue automatically. If a message has been lost because the buffer
  9. was full, all backends that haven't read this message will be
  10. noticed that they have to reset their cache state. This is done
  11. at the time when they try to read the message queue.
  12. The message queue is implemented as a shared buffer segment. Actually,
  13. the queue is a circle to allow fast inserting, reading (invalidate data) and
  14. maintaining the buffer.
  15. Access to this shared message buffer is synchronized by the lock manager.
  16. The lock manager treats the buffer as a regular relation and sets
  17. relation level locks (with mode = LockWait) to block backends while 
  18. another backend is writing or reading the buffer. The identifiers used
  19. for this special 'relation' are database id = 0 and relation id = 0.
  20. The current implementation prints regular (e)log information
  21. when a message has been removed from the buffer because the buffer 
  22. is full, and a backend has to reset its cache state. The elog level
  23. is NOTICE. This can be used to improve teh behavior of backends
  24. when invalidating or reseting their cache state.