forked from agocorona/TCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTCache.cabal
80 lines (78 loc) · 2.32 KB
/
TCache.cabal
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: TCache
version: 0.14
cabal-version: >= 1.6
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: [email protected]
synopsis: A Transactional cache with user-defined persistence
description:
TCache is a transactional cache with configurable persitence. It allows conventional
STM transactions for objects that syncronize with their user-defined storages.
State in memory and into permanent storage is transactionally coherent.
.
It has interface defined for Amazon WS and Yesod Persistent backends defined in tcache-<backend>
packages.
Persistent is a multi-backend interface for SQL and non SQL databases such in Mongo-db
.
The package implements serializable STM references, access by key and by record field value, triggers,
full text and field indexation, default serialization and a query language based on record fields
.
Since the STM references can be included in data structures and serialized, this is right
for graph databases and other NoSQL databases.
category: Data, Database
author: Alberto Gómez Corona
tested-with: GHC == 7.10.2
data-dir: ""
extra-source-files:
demos/DBRef.hs
demos/indexQuery.hs
demos/indexText.hs
demos/basicSample.hs
demos/caching.hs
demos/triggerRelational.lhs
demos/memoization.hs
demos/DBRef.hs
source-repository head
type: git
location: https://github.com/ariep/TCache
library
build-depends:
base >= 4 && < 5,
bytestring -any,
cereal >= 0.4 && < 0.6,
cereal-text >= 0.1 && < 0.2,
containers >= 0.1.0.1,
directory >= 1.0,
hashtables,
ID >= 0.1 && < 0.2,
mtl -any,
old-time >= 1.0,
random >= 1.1 && < 1.2,
RefSerialize -any,
stm -any,
text >= 1.2 && < 1.3,
vector-binary-instances >= 0.2 && < 0.3,
text-index >= 0.2 && < 0.3,
transformers >= 0.3 && < 0.6,
transformers-compat >= 0.4 && < 0.6
exposed-modules:
Data.TCache
Data.TCache.Defs
Data.TCache.ID
Data.TCache.Index
Data.TCache.Index.Map
Data.TCache.Index.Text
Data.TCache.Triggers
-- Data.Persistent.Collection
-- Data.Persistent.IDynamic
Control.Lens.Monadic
exposed: True
buildable: True
extensions:
OverlappingInstances
UndecidableInstances
ScopedTypeVariables
DeriveDataTypeable
hs-source-dirs: src
-- other-modules: