File: control

package info (click to toggle)
matomo-component-cache 2.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 396 kB
  • sloc: php: 1,433; makefile: 12
file content (36 lines) | stat: -rw-r--r-- 1,614 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Source: matomo-component-cache
Section: php
Priority: optional
Maintainer: Debian-matomo-maintainers <debian-matomo-maintainers@alioth-lists.debian.net>
Uploaders: William Desportes <williamdes@wdes.fr>,
           Utkarsh Gupta <utkarsh@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-sequence-phpcomposer,
               php-matomo-doctrine-cache,
               phpab,
               phpunit,
               pkg-php-tools
Standards-Version: 4.7.0
Homepage: https://github.com/matomo-org/component-cache
Vcs-Browser: https://salsa.debian.org/matomo-team/matomo-component-cache
Vcs-Git: https://salsa.debian.org/matomo-team/matomo-component-cache.git
Rules-Requires-Root: no

Package: php-matomo-component-cache
Architecture: all
Multi-Arch: foreign
Depends: php-pear, ${misc:Depends}, ${phpcomposer:Debian-require}
Description: PHP caching library based on Doctrine cache
 This is a PHP caching library based on Doctrine cache that supports different
 backends. It is developed with the focus on speed with abilities to fetch
 hundreds of entries from the cache in one request.
 .
 It supports the following compression formats:
  - Array (holds cache entries only during one request but is very fast)
  - Null (useful for development, won't cache anything)
  - File (stores the cache entry on the file system)
  - Redis (stores the cache entry on a Redis server, requires phpredis)
  - Chained (allows one to chain multiple backends to make sure it will read
    from a fast cache if possible)
  - DefaultTimeout and KeyPrefix can be used to wrap other backend with default
    parameters