Download the PHP package hms/statistics without Composer

On this page you can find all versions of the php package hms/statistics. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package statistics

statistics

基于laravel的数据统计存储扩展包

环境要求

安装

配置

创建配置文件:

基本用法

在你的model中定义:

你的统计表中必须包含至少一个条件字段和一个统计字段,并且你需要在statisticsConditionFields数组中定义你的条件字段,在incrementFields中定义你的统计字段。

存入统计业务表

如上所示,statistics方法会接收两个参数,第一个参数是需要存储的数据数组,该方法会默认将数据按model中定义的规则进行判断是新增或是累加操作,如果你期望数据按定义的条件进行强制覆盖操作则可传入第二个参数。 第二个参数是可选参数默认为null,当传入force时数据将以覆盖的形式存入collection中,当传入new时表示该数据以新增方式存入collection中。

使用redis将数据进行缓存

如果你需要在高并发的业务中进行数据统计,那么强烈推荐你使用此方法存储数据,cache方法也会将数据按model中定义的规则用hash表保存在你的redis中。

将redis中存储的数据同步到mongodb

在使用前你需要开启Laravel提供的任务调度 功能

并且在config/statistics.phpnamespaces数组中定义你需要进行同步的 model,如下所示:

然后在App\Console\Kernelschedule 方法中加入statisticsArtisan 命令

至此statistics为你提供了一套非常便利的数据统计

注:statistics提供了数据redis的存储与查询方法的封装,但是并未实现在查询mongodb时默认将缓存中的数据读取的功能,此时需要自行将缓存数据读出进行合并操作。

其他用法

setDistinct

如果你需要统计UV值那么你可以使用该方法:

or

通过setDistinct方法定义你的去重条件,支持数组或闭包形式。如果传入闭包,调用 cache 方法则第二个参数需传入一个闭包函数来记录你的去重条件。

注意:去重条件不推荐用or语句,如果这样做就失去了去重的意义。


All versions of statistics with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
jenssegers/mongodb Version >=3.3
predis/predis Version >=1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hms/statistics contains the following files

Loading the files please wait ....