1
0
Fork 0
mbuni/mbuni/extras/pgsql-queue
bagyenda cb989364b8 Updated with Patches from Jacek 2014-02-11 08:47:29 +00:00
..
Makefile.am minor fix to content adaptation module 2008-08-08 12:39:24 +00:00
Readme.txt *** empty log message *** 2008-09-01 17:20:24 +00:00
mms_pgsql_queue.c Updated with Patches from Jacek 2014-02-11 08:47:29 +00:00
tables.sql fixes for mm1 push 2008-12-17 17:29:40 +00:00

Readme.txt

This module provides Queue management for mbuni using PostgreSQL as the storage engine.
To use it, you need only add two lines to the mbuni config 'mbuni' group:

queue-manager-module = "/path_to/libmms_pgsql_queue.so"
queue-module-init-data = "host=dbhost user=db_user password=dbpassword dbname=dbname"

Make sure the database you are trying to connect to has already been created
and the relevant tables created using the supplied file "tables.sql".  

Some notes:
  - Mbuni will open number_of_db_connections connections to the database at startup.
    Ensure your PostgreSQL installation limits are not exceeded. DB connections will
    be shared by all parts of Mbuni, which means that in high traffic situations, 
    you may experience mbuni component slow-down as all db connections might be in use.
  - Vacuum your DB often, since a lot of rows are updated/deleted during operation.