Changes between Version 17 and Version 18 of XcacheApi
- Timestamp:
- 2007-07-10T04:04:52+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
XcacheApi
v17 v18 38 38 <?php 39 39 if (!xcache_isset("count")) { 40 xcache_set("count", load_count_from_mysql());40 xcache_set("count", load_count_from_mysql()); 41 41 } 42 42 ?> … … 45 45 // save every 100 hits 46 46 if (($count % 10) == 100) { 47 save_count_to_mysql($count);47 save_count_to_mysql($count); 48 48 } 49 49 ?>

