当前位置: 首页 > 工具软件 > Oxwall > 使用案例 >

OXWALL源码阅读

司寇祖鹤
2023-12-01

oxwall 源码量在20万(不含空格注释)。
使用了jquery、smarty、数据库缓存

执行定时清理任务
C:\wamp\bin\php\php5.5.12>php C:\wamp\www\oxwall\ow_cron\run.php

oxwall\ow_core\smarty.php
smarty类,包含参数设置,安全设置

oxwall\ index.php
主页入口。
执行oxwall\ow_includes\init.php
执行oxwall\ow_core\session.php

$application->init();
$application->route();
$application->handleRequest();
$application->returnResponse();

最大用户量
oxwall\ow_includes\define.php

if ( !defined("OW_SQL_LIMIT_USERS_COUNT" ) )
{
    define("OW_SQL_LIMIT_USERS_COUNT", 10000);
}

数据缓存基类
/oxwall/ow_core/cache_service.php
数据库缓存实现
/oxwall/ow_system_plugins/base/bol/db_cache_service.php
 类似资料: