| Version 6 (modified by wangjianqiang, 14 years ago) (diff) |
|---|
页面访问路径功能模块
访问路径数据实现
访问路径数据主要用于记录各路径访问情况的汇总信息,用于生成路径图谱,其数据格式定义如下:
create table `access_path_*` ( `app_id` int unsigned not null, `version` varchar(255) not null, `from` varchar(255), `to` varchar(255) not null, `count` int unsigned default 0, `duration` bigint unsigned default 0, primary key (`app_id`,`version`,`from`,`to`) );
示例:
| app_id | version | from | to | count | duration |
| 5 | 3.1.0 | 资讯列表 | 文章 | 43543 | 645623545663 |
| 5 | 3.1.0 | 文章 | 评论列表 | 7454 | 63467474 |
| 5 | 3.1.0 | 评论列表 | 发表评论 | 535 | 935554 |
| 5 | 3.1.0 | 文章 | 产品详情 | 54 | 43422 |
| 5 | 3.1.0 | 资讯列表 | 美图 | 8324 | 312334343 |
![(please configure the [header_logo] section in trac.ini)](http://www1.pconline.com.cn/hr/2009/global/images/logo.gif)