Contribute to the DSpace Development Fund

The newly established DSpace Development Fund supports the development of new features prioritized by DSpace Governance. For a list of planned features see the fund wiki page.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

In many situations, the best way to speed up a stock Postgres install is to increase shared memory buffers.
Shared buffers are counted in 8k blocks. elow is a configuration where Postgres can use (28672*8) = 229376k.
postgresql.conf:
{{

Unknown macro: {shared_buffers = 28672 # 2*max_connections, min 16}}

}
In Linux, kernel shared memory will need to be expanded to handle more than (usually) 32M. http://www.budget-ha.com/postgres/shared-memory.jsp has more details and methods.

  • No labels