/var/lib/ghc/package.conf.d/hedis-0.6.2.conf is in libghc-hedis-dev 0.6.2-2build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | name: hedis
version: 0.6.2
id: hedis-0.6.2-d9a4593cd73408b469f9fdd28e8145d6
license: BSD3
copyright: Copyright (c) 2011 Falko Peters
maintainer: falko.peters@gmail.com
stability:
homepage: https://github.com/informatikr/hedis
package-url:
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:
.
[Complete Redis 2.6 command set:] All Redis commands
(<http://redis.io/commands>) are available as haskell functions, except
for the MONITOR and SYNC commands. 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.
.
[Changes since version 0.5.1]
.
* Changed return type of HDEL from Bool to Integer.
.
* Some documentation updates.
.
[Changes since version 0.5]
.
* New commands: DUMP, RESTORE, BITOP, BITCOUNT.
.
* Removed the dependency on stm.
.
* Improved performance of Queued in long transactions.
.
* Minor documentation updates.
.
[Changes since version 0.4.1]
.
* Added new Redis 2.6 commands, including Lua scripting support.
.
* A transaction context is now created by using the 'multiExec' function.
The functions 'multi', 'exec' and 'discard' are no longer available
individually.
.
* Inside of a transaction, commands return their results wrapped in a
composable /future/, called 'Queued'.
.
* The 'getType' command (the Redis TYPE command) now has a custom return
type 'RedisType'.
.
* Minor improvements and fixes to the documentation.
.
category: Database
author: Falko Peters
exposed: True
exposed-modules: Database.Redis
hidden-modules: Database.Redis.Core
Database.Redis.ProtocolPipelining Database.Redis.Protocol
Database.Redis.PubSub Database.Redis.Transactions
Database.Redis.Types Database.Redis.Commands
Database.Redis.ManualCommands
trusted: False
import-dirs: /usr/lib/haskell-packages/ghc/lib/hedis-0.6.2/ghc-7.6.3
library-dirs: /usr/lib/haskell-packages/ghc/lib/hedis-0.6.2/ghc-7.6.3
hs-libraries: HShedis-0.6.2
extra-libraries:
extra-ghci-libraries:
include-dirs:
includes:
depends: BoundedChan-1.0.1.0-f189f5b9412168ec5d144896b95b6d2f
attoparsec-0.10.4.0-d9fd97cfc1a1748b3cde35adf7fd233b
base-4.6.0.1-8aa5d403c45ea59dcd2c39f123e27d57
bytestring-0.10.0.2-4f93248f75667c2c3321a7a6761b576f
bytestring-lexing-0.4.3-36fd4f26dc3afd730a744f9e6e987dee
mtl-2.1.2-94c72af955e94b8d7b2f359dadd0cb62
network-2.4.1.2-040cee5ece44014a8574cb3f87b1eec4
resource-pool-0.2.1.1-270550aed31e8bb78bdf65b9384feea6
time-1.4.0.1-10dc4804a19dc0000fab79908f1a9f50
vector-0.10.0.1-1fbb548bc492f07fef7e604d2e6f581d
hugs-options:
cc-options:
ld-options:
framework-dirs:
frameworks:
haddock-interfaces: /usr/lib/ghc-doc/haddock/hedis-0.6.2/hedis.haddock
haddock-html: /usr/share/doc/libghc-hedis-doc/html/
|