cache.ini 553 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Cache settings
  3. #
  4. [sqlite]
  5. DatabaseName=tmp/cachedb
  6. HostName=
  7. Port=
  8. UserName=
  9. Password=
  10. ConnectOptions=
  11. PostOpenStatements="PRAGMA journal_mode=OFF; PRAGMA busy_timeout=5; PRAGMA synchronous=OFF; VACUUM;"
  12. [redis]
  13. DatabaseName=
  14. HostName=localhost
  15. Port=
  16. UserName=
  17. Password=
  18. ConnectOptions=
  19. PostOpenStatements=SELECT 1;
  20. [mongodb]
  21. DatabaseName=mdb
  22. HostName=localhost
  23. Port=
  24. UserName=
  25. Password=
  26. ConnectOptions=
  27. PostOpenStatements=
  28. [memory]
  29. DatabaseName=tfcache.shm
  30. HostName=
  31. Port=
  32. UserName=
  33. Password=
  34. ConnectOptions=MEMORY_SIZE=1G
  35. PostOpenStatements=