/usr/share/doc/ocsigenserver/manual-wiki/libraries.wiki is in ocsigenserver-doc 2.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | =Libraries
==Ocsigen_cache
==Ocsipersist
<<div class="wip"|Ocsipersist (2 implémentations)
Eliom allows to use more persistent data, using the module
<<a_api project="ocsigenserver" | module Ocsipersist >> is needed in
{{{ eliom.cma }}}, thus you need to dynlink it in the
configuration file before {{{ Eliom }}}).
There are currently two implementations of {{{ Ocsipersist }}}:
{{{ ocsipersist-dbm.cma }}} (uses the DBM database) and
{{{ ocsipersist-sqlite.cma }}} (uses the SQLite database,
and depends on {{{ sqlite3.cma }}}).
>>
It is possible to customize the location of the database on the
file system. For example, with sqlite:
{{{
<extension findlib-package="ocsigen.ext.ocsipersist-sqlite">
<database file="_DATADIR_/ocsidb"/>
</extension>
}}}
And with DBM, you can customize the location of the database and the
name of the {{{ocsidbm}}} process you want to use:
{{{
<extension findlib-package="ocsigen.ext.ocsipersist-dbm">
<store dir="_DATADIR_"/>
<ocsidbm name="_EXTRALIBDIR_/ocsidbm"/>
</extension>
}}}
|