12345678910111213141516171819202122232425262728293031323334353637383940 |
- #
- # Cache settings
- #
- [sqlite]
- DatabaseName=tmp/cachedb
- HostName=
- Port=
- UserName=
- Password=
- ConnectOptions=
- PostOpenStatements="PRAGMA journal_mode=OFF; PRAGMA busy_timeout=5; PRAGMA synchronous=OFF; VACUUM;"
- [redis]
- DatabaseName=
- HostName=localhost
- Port=
- UserName=
- Password=
- ConnectOptions=
- PostOpenStatements=SELECT 1;
- [mongodb]
- DatabaseName=mdb
- HostName=localhost
- Port=
- UserName=
- Password=
- ConnectOptions=
- PostOpenStatements=
- [memory]
- DatabaseName=tfcache.shm
- HostName=
- Port=
- UserName=
- Password=
- ConnectOptions=MEMORY_SIZE=1G
- PostOpenStatements=
|