1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;======================================================================
;; set up transport, db cache and sync methods
;;
;; sync-method: 'original, 'attach or 'none
;; cache-method: 'tmp or 'none
;; rmt:transport-mode: 'http, 'tcp, 'nfs
;;
;; NOTE: NOT ALL COMBINATIONS WORK
;;
;;======================================================================
;; uncomment this block to test without tcp or cachedb
;; (dbfile:sync-method 'none)
;; (dbfile:cache-method 'none)
;; (rmt:transport-mode 'nfs)
;; uncomment this block to test with tcp and cachedb
(dbfile:sync-method 'none) ;; original was causing crash on start.
(dbfile:cache-method 'none)
(rmt:transport-mode 'nfs)
|
>
>
>
|
<
<
<
<
<
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
;;======================================================================
;; set up transport, db cache and sync methods
;;
;; sync-method: 'original, 'attach or 'none
;; cache-method: 'tmp or 'none
;; rmt:transport-mode: 'http, 'tcp, 'nfs
;;
;; 'auto
;; read-only query and no servers started - mrah/
;;
;; NOTE: NOT ALL COMBINATIONS WORK
;;
;;======================================================================
;; uncomment this block to test without tcp or cachedb
(dbfile:sync-method 'none)
(dbfile:cache-method 'none)
(rmt:transport-mode 'nfs)
;; uncomment this block to test with tcp and cachedb
;; (dbfile:sync-method 'none) ;; original was causing crash on start.
;; (dbfile:cache-method 'none)
;; (rmt:transport-mode 'tcp)
|