forked from informatikr/hedis
-
Notifications
You must be signed in to change notification settings - Fork 29
/
hedis.cabal
197 lines (189 loc) · 6.37 KB
/
hedis.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
name: hedis
version: 0.15.3
synopsis:
Client library for the Redis datastore: supports full command set,
pipelining.
Description:
Redis is an open source, advanced key-value store. It is often referred to
as a data structure server since keys can contain strings, hashes, lists,
sets and sorted sets. This library is a Haskell client for the Redis
datastore. Compared to other Haskell client libraries it has some
advantages:
.
[Compatibility with Latest Stable Redis:] Hedis is intended
to be used with the latest stable version of Redis (currently 5.0).
Most redis commands (<http://redis.io/commands>) are available as
haskell functions, although MONITOR and SYNC are intentionally
omitted. Additionally, a low-level API is
exposed that makes it easy for the library user to implement further
commands, such as new commands from an experimental Redis version.
.
[Automatic Optimal Pipelining:] Commands are pipelined
(<http://redis.io/topics/pipelining>) as much as possible without any
work by the user. See
<http://informatikr.com/2012/redis-pipelining.html> for a
technical explanation of automatic optimal pipelining.
.
[Enforced Pub\/Sub semantics:] When subscribed to the Redis Pub\/Sub server
(<http://redis.io/topics/pubsub>), clients are not allowed to issue
commands other than subscribing to or unsubscribing from channels. This
library uses the type system to enforce the correct behavior.
.
[Connect via TCP or Unix Domain Socket:] TCP sockets are the default way to
connect to a Redis server. For connections to a server on the same
machine, Unix domain sockets offer higher performance than the standard
TCP connection.
.
For detailed documentation, see the "Database.Redis" module.
.
license: BSD3
license-file: LICENSE
author: Falko Peters <[email protected]>
maintainer: Kostiantyn Rybnikov <[email protected]>
copyright: Copyright (c) 2011 Falko Peters
category: Database
build-type: Simple
cabal-version: >=1.10
homepage: https://github.com/informatikr/hedis
bug-reports: https://github.com/informatikr/hedis/issues
extra-source-files: CHANGELOG
source-repository head
type: git
location: https://github.com/informatikr/hedis
flag dev
description: enable this for local development -Werror and profiling options
default: False
manual: True
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fwarn-tabs
if impl(ghc >= 8.6.0)
ghc-options: -Wno-warnings-deprecations
if flag(dev)
ghc-options: -Werror
if flag(dev)
ghc-prof-options: -auto-all
exposed-modules: Database.Redis
, Database.Redis.Sentinel
, Database.Redis.Core.Internal
build-depends: scanner >= 0.2,
async >= 2.1,
base >= 4.8 && < 5,
bytestring >= 0.9,
bytestring-lexing >= 0.5,
exceptions,
unordered-containers,
containers,
text,
deepseq,
mtl >= 2,
network >= 2 && < 3.2,
resource-pool >= 0.2,
stm,
time,
tls >= 1.3,
vector >= 0.9,
HTTP,
errors,
network-uri,
unliftio-core,
random,
extra
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.11 && < 0.19
other-modules: Database.Redis.Core,
Database.Redis.Connection,
Database.Redis.Cluster,
Database.Redis.Cluster.HashSlot,
Database.Redis.Cluster.Command,
Database.Redis.ProtocolPipelining,
Database.Redis.Protocol,
Database.Redis.PubSub,
Database.Redis.Transactions,
Database.Redis.Types
Database.Redis.Commands,
Database.Redis.ManualCommands,
Database.Redis.URL,
Database.Redis.ConnectionContext
other-extensions: StrictData
benchmark hedis-benchmark
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: Benchmark.hs
build-depends:
base == 4.*,
mtl >= 2.0,
hedis,
bytestring,
time >= 1.2,
random,
file-embed
other-modules: ClusterBenchmark
ghc-options: -O2 -Wall -rtsopts
if flag(dev)
ghc-options: -Werror
if flag(dev)
ghc-prof-options: -auto-all
test-suite hedis-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: PubSubTest
Tests
build-depends:
base == 4.*,
bytestring >= 0.10,
hedis,
HUnit,
async,
stm,
text,
mtl == 2.*,
test-framework,
test-framework-hunit,
time,
file-embed
-- We use -O0 here, since GHC takes *very* long to compile so many constants
ghc-options: -O0 -Wall -rtsopts -fno-warn-unused-do-bind
if flag(dev)
ghc-options: -Werror
if flag(dev)
ghc-prof-options: -auto-all
test-suite hedis-test-cluster
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: ClusterMain.hs
other-modules: PubSubTest
Tests
build-depends:
base == 4.*,
bytestring >= 0.10,
hedis,
HUnit,
async,
stm,
text,
mtl == 2.*,
test-framework,
test-framework-hunit,
time,
file-embed
-- We use -O0 here, since GHC takes *very* long to compile so many constants
ghc-options: -O0 -Wall -rtsopts -fno-warn-unused-do-bind
if flag(dev)
ghc-options: -Werror
if flag(dev)
ghc-prof-options: -auto-all
test-suite doctest
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: DocTest.hs
ghc-options: -O0 -rtsopts
build-depends:
base == 4.*,
doctest