postgresql/src/backend/storage/ipc
2011-01-01 13:18:15 -05:00
..
ipc.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
ipci.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
Makefile Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
pmsignal.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
procarray.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
procsignal.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
README Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00
shmem.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
shmqueue.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
sinval.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
sinvaladt.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00
standby.c Stamp copyrights for year 2011. 2011-01-01 13:18:15 -05:00

src/backend/storage/ipc/README

Cache Invalidation Synchronization Routines
===========================================

Mon Jul 18 11:09:22 PDT 1988  W.KLAS

The cache synchronization is done using a message queue. Every
backend can register a message which then has to be read by
all backends. A message read by all backends is removed from the
queue automatically. If a message has been lost because the buffer
was full, all backends that haven't read this message will be
told that they have to reset their cache state. This is done
at the time when they try to read the message queue.

The message queue is implemented as a shared buffer segment. Actually,
the queue is a circle to allow fast inserting, reading (invalidate data) and
maintaining the buffer.