cache.ini 431 B

123456789101112131415161718192021222324252627282930
  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=