database.config.php 979 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. //数据库类型
  3. $_db_config["type"] = "mysql";
  4. //连接数据库引挈
  5. $_db_config["engine"] = "mysql";
  6. //数据库服务器
  7. $_db_config["host"] = "localhost";
  8. //数据库端口
  9. $_db_config["port"] = "3306";
  10. //数据库用户
  11. $_db_config["user"] = "root";
  12. //数据库密码
  13. $_db_config["pass"] = "0523";
  14. //数据库名
  15. $_db_config["data"] = "wzyx";
  16. //数据表前缀
  17. $_db_config["prefix"] = "lyfz_";
  18. //启用缓存
  19. //txt:文本缓存
  20. //mem:内存缓存
  21. //sql: 数据库缓存,值缓存在数据表 cache 中
  22. //是否启用缓存请查看相应程序中config.inc.php中是否有设置 DB_CACHE
  23. //未设置或设置否表示不启用缓存
  24. //推荐前台启用缓存,后台禁用缓存
  25. $_db_config["cache_type"] = "txt";
  26. //配置memcache的服务器及端口
  27. $_db_config["cache_server"] = "localhost";
  28. $_db_config["cache_port"] = 11211;
  29. //缓存过期时间,单位秒钟,如果设为0,也表示不缓存,不支持负数
  30. $_db_config["cache_time"] = 3600;
  31. ?>