File: control

package info (click to toggle)
core-cache-clojure 0.6.5-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 240 kB
  • ctags: 6
  • sloc: xml: 89; makefile: 32
file content (39 lines) | stat: -rw-r--r-- 1,466 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
37
38
39
Source: core-cache-clojure
Section: java
Priority: optional
Maintainer: Debian Clojure Maintainers <pkg-clojure-maintainers@lists.alioth.debian.org>
Uploaders:
 Eugenio Cano-Manuel Mendoza <eugeniocanom@gmail.com>
Build-Depends:
 javahelper (>= 0.43),
 maven-repo-helper (>= 1.7),
 libtext-markdown-perl | markdown,
 libdata-priority-map-clojure (>= 0.0.7),
 debhelper (>= 10),
 default-jdk,
 clojure (>= 1.8)
Standards-Version: 4.0.0
Vcs-Git: https://anonscm.debian.org/git/pkg-clojure/core-cache-clojure.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-clojure/core-cache-clojure.git
Homepage: http://github.com/clojure/core.cache

Package: libcore-cache-clojure
Architecture: all
Depends: ${java:Depends}, ${misc:Depends}
Recommends: ${java:Recommends}
Description: cache abstraction library for Clojure
 core.cache is a Clojure library that provides implementations of basic
 caching strategies such as:
 .
  * First-in-first-out (FIFOCache)
  * Least-recently-used (LRUCache)
  * Least-used (LUCache -- sometimes called Least Frequently Used)
  * Time-to-live (TTLCache)
  * Naïve cache (BasicCache)
  * Naïve cache backed with soft references (SoftCache)
  * Low inter-reference recency set algorithm (LIRSCache)
 .
 All implementation use a common base abstraction (CacheProtocol) which, in
 combination with suitable macros, allows for the easy integration of user
 defined caching strategies that hook into the Clojure associative data
 capabilities.