定制 mmdm/sim-hit-counter 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mmdm/sim-hit-counter

Composer 安装命令:

composer require mmdm/sim-hit-counter

包简介

A simple yet nice hit counter library

README 文档

README

A simple library for count users' hits.

Attention

PLEASE NOTE THAT this library is good only for small websites so... DO NOT USE THIS for high traffic websites and use more professional tools to handle huge database and server overheads.

Install

composer

composer require mmdm/sim-hit-counter

Or you can simply download zip file from github and extract it, then put file to your project library and use it like other libraries.

Just add line below to autoload files:

require_once 'path_to_library/autoloader.php';

and you are good to go.

Architecture

This library use database to have its best performance

Collation:

It should be utf8mb4_unicode_ci because it is a very nice collation. For more information about differences between utf8 and utf8mb4 in general and unicode please see this link from stackoverflow

Table:

  • hits

    This table contains all hits.

    Least columns of this table should be:

    • id (INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT)

    • url (TEXT NOT NULL)

    • type (VARCHAR(20) NOT NULL)

    • view_count (BIGINT(20) UNSIGNED NOT NULL DEFAULT 0)

    • unique_view_count (BIGINT(20) UNSIGNED NOT NULL DEFAULT 0)

    • from_time (INT(11) UNSIGNED NOT NULL)

    • to_time (INT(11) UNSIGNED NOT NULL)

How to use

First of all you need a PDO connection like below:

$host = '127.0.0.1';
$db = 'database name';
$user = 'username';
$pass = 'password';
// this is very nice collation to use
$charset = 'utf8mb4';

$dsn = "mysql:host={$host};dbname={$db};charset={$charset}";
$options = [
    // add this option to show exception on any bad condition
    PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
];
try {
    $pdo = new PDO($dsn, $user, $pass, $options);
} catch (\PDOException $e) {
    throw new \PDOException($e->getMessage(), (int)$e->getCode());
}

Then create hit counter instance and use its methods

$hitCounter = new HitCounter($pdo);

// use hit methods
$hitCounter->hitDaily('the_url');
// ...

HitCounter class

__construct(PDO $pdo_instance, ?array $config = null, bool $test_mode = false)

$config: The config of yours like the one in Architecture.

see config file under src/_Config path.

$test_mode: By default users ip addresses that are unknown or invalid, crawlers and DNT header are not allowed to hit website. To prevent this check, send true as parameter's value.

runConfig()

To make config working and create tables, call this method.

hitDaily(string $url)

Make a daily hit.

hitWeekly(string $url)

Make a weekly hit.

hitMonthly(string $url)

Make a monthly hit.

hitYearly(string $url)

Make a yearly hit.

hit(string $url, int $hit_at_times = IHitCounter::TIME_ALL)

Make a hit for a specific period of time according to second parameter. please see Constants section

Note: You can use multiple constants together with | operator

report(?string $url, int $from_time, int $to_time, int $hit_with_types = self::TYPE_ALL): array

You can get count of views and unique_views from specific/all url(s) from a specific time and for a specific type.

freeReport(?string $url, string $where, array $bind_values = []): array

You can get count of views and unique_views from specific/all url(s) with specific condition.

Note: You should use names parameters and put value of that parameter in $bind_values parameter.

saveDailyHits(string $path_to_store, bool $delete_from_database = false): bool

Save all daily hits information before today in a file.

saveWeeklyHits(string $path_to_store, bool $delete_from_database = false): bool

Save all weekly hits information before this week in a file.

saveMonthlyHits(string $path_to_store, bool $delete_from_database = false): bool

Save all monthly hits information before this month in a file.

saveYearlyHits(string $path_to_store, bool $delete_from_database = false): bool

Save all yearly hits information before this year in a file.

saveHits(string $path_to_store, int $hit_at_times = self::TIME_ALL, bool $delete_from_database = false): bool

Save all hits information before current time in a file.

Note: You can use multiple constants together with | operator

Constants

There are some constants in IHitCounter interface class as below:

Time constants:

  • TIME_DAILY

  • TIME_WEEKLY

  • TIME_MONTHLY

  • TIME_YEARLY

  • TIME_ALL

Hit types constants:

  • TYPE_DAILY

  • TYPE_WEEKLY

  • TYPE_MONTHLY

  • TYPE_YEARLY

  • TYPE_ALL

License

Under MIT license

mmdm/sim-hit-counter 适用场景与选型建议

mmdm/sim-hit-counter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 11 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 mmdm/sim-hit-counter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 mmdm/sim-hit-counter 我们能提供哪些服务?
定制开发 / 二次开发

基于 mmdm/sim-hit-counter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 13
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-11-02