File: libraries.wiki

package info (click to toggle)
ocsigenserver 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,508 kB
  • ctags: 1,646
  • sloc: ml: 11,732; makefile: 735; sh: 625
file content (33 lines) | stat: -rw-r--r-- 1,059 bytes parent folder | download | duplicates (2)
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>
}}}