BookSleeve 1.3.32

Suggested Alternatives

StackExchange.Redis

There is a newer version of this package available.
See the version list below for details.
dotnet add package BookSleeve --version 1.3.32
NuGet\Install-Package BookSleeve -Version 1.3.32
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BookSleeve" Version="1.3.32" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BookSleeve --version 1.3.32
#r "nuget: BookSleeve, 1.3.32"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BookSleeve as a Cake Addin
#addin nuget:?package=BookSleeve&version=1.3.32

// Install BookSleeve as a Cake Tool
#tool nuget:?package=BookSleeve&version=1.3.32

Fully asynchronous Redis client, capable of pipelined operations; this acts as a multiplexer, allowing high-performance parallel usage of a single connection (or few connections) without being blocked on each separate request. All core redis opeations are supported. This library can also be used from C# 5.0/async very effectively.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on BookSleeve:

Package Downloads
Roque

Roque is a queueing framework. Allows you to create Redis-based distributed async event and work queues by just using plain-old C# methods and events.

CommonWebInfrastructure

The implementations of Common Web Infrastructure. See README on github.

Roque.Worker

This package is for class libraries that implement worker services or subscribers. Roque is a queueing framework. Allows you to create Redis-based distributed async event and work queues by just using plain-old C# methods and events.

WACEL

WACEL provides implementation of high-level data structures that can be shared among your services and application. You can use WACEL data structures just as if you were using local data structures such as arrays, tables, circular buffers and OLAP cubes, and these data structures are backed by Windows Azure Cache, Windows Azure Table Storage, or both, depends on your needs of performance and persistence.

Resque.RedisClient.Booksleeve

Booksleeve Redis Client for Resque

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.41 377,466 11/28/2013
1.3.40 5,282 11/19/2013
1.3.39 21,998 9/20/2013
1.3.38 26,585 6/27/2013
1.3.37 31,419 5/11/2013
1.3.36 2,473 5/7/2013
1.3.35 3,598 4/26/2013
1.3.34 5,704 4/22/2013
1.3.33 2,246 4/22/2013
1.3.32 2,181 4/22/2013
1.3.31 178,064 4/19/2013
1.3.30 3,019 4/18/2013
1.3.29 2,352 4/17/2013
1.3.28 2,186 4/17/2013
1.3.27 2,707 4/16/2013
1.3.26 2,268 4/15/2013
1.3.25 2,315 4/11/2013
1.3.24 2,325 4/11/2013
1.3.23 2,237 4/10/2013
1.3.22 2,373 4/10/2013
1.3.21 2,228 4/9/2013
1.3.20 2,237 4/8/2013
1.3.19 2,247 4/5/2013
1.3.18 2,416 4/5/2013
1.3.17 2,512 4/4/2013
1.3.16 2,281 4/4/2013
1.3.15 2,360 4/3/2013
1.3.14 2,351 4/3/2013
1.3.13 2,140 4/3/2013
1.3.12 3,320 3/27/2013
1.3.11 2,129 3/27/2013
1.3.10 2,307 3/25/2013
1.3.9 2,200 3/23/2013
1.3.8 2,435 3/23/2013
1.2.0.8 32,816 1/29/2013
1.2.0.7 4,468 1/17/2013
1.2.0.6 2,258 1/11/2013
1.2.0.5 8,246 12/3/2012
1.2.0.4 2,528 12/1/2012
1.2.0.3 2,749 11/21/2012
1.2.0.2 11,544 10/24/2012
1.2.0.1 4,141 10/18/2012
1.2.0 2,685 10/17/2012
1.1.0.12 7,289 10/17/2012
1.1.0.11 2,589 10/15/2012
1.1.0.10 2,565 10/12/2012
1.1.0.9 2,413 10/9/2012
1.1.0.8 11,290 8/2/2012
1.1.0.7 12,320 4/12/2012
1.1.0.6 3,091 3/27/2012
1.1.0.5 3,189 1/10/2012

* 1.3.32  - Add: show connection state and other info in counters
     * 1.3.31  - Fix: ensure transaction abort due to precondition-fail always cancels the unsent messages; use appropriate threads for their callbacks
     * 1.3.30  - Fix: use ConnectAsync rather than a task with sync Connect
     * 1.3.29  - Fix: better SocketError tracking with older async read API
     * 1.3.28  - Add: Make last command time available to the caller; use the older async read API
     * 1.3.27  - Add: GetCounters tracks the number of in-progress callbacks (sync and async)
     * 1.3.26  - Fix: Tidying up shutdown
     * 1.3.25  - Fix: Async-receive could misreport blame
     * 1.3.24  - Add: Much better tracking of who to blame for shutdown events; this is available on the connection and used in error messages
     * 1.3.23  - Add: Expose an explicit Shutdown event
     * 1.3.22  - Add: Make CompletionMode configurable (globally and per-connection)
     * 1.3.21  - Add: SuspendFlush/ResumeFlush
     * 1.3.20  - Add: support for DUMP/RESTORE
     * 1.3.19  - Add: support for batches; like transactions, but no guarantee of atomicity
     * 1.3.18  - Fix: close during "shutdown" was losing fault information
     * 1.3.17  - Fix: annoying null-ref is annoying
     * 1.3.16  - Fix: cleanup a few more unobserved exceptions
     * 1.3.15  - Fix: ensure all exceptions are "observed"
     * 1.3.14  - Fix: treat unsendable messages as cancelled
     * 1.3.13  - Fix: multi-channel subscribe was failing
     *         - Add: support for single-command locking w/ 2.6.12 or above
     * 1.3.12  - Fix: 1.3.11 was deploy fail :(
     * 1.3.11  - Fix: Environment.Ticks (from 1.3.7) simplified
     *           Add: Optionally inline callbacks when possible to reduce Task overhead
     * 1.3.10  - Fix: subscription connections may need to defer pending queue until after INFO, to
     *           ensure CLIENT SETNAME works; QUIT should not error during Dispose();
     * 1.3.9   - Add: "redis-command" to errors
     * 1.3.8   - Fix: possible null-ref during timeouts
     * 1.3.7   - Fix slow ConnectionUtils.Connect performance w/ 'down' servers
     *         - Avoid Environment.Ticks due to wrap-around
     * 1.3.6   - Adds TIME support
     *         - Pub/sub now returns Task to allow tracking of subscription
     *
     * 1.3.*- MAJOR CHANGES; 1.3 removes the threaded core to allow for more scalability over multiple connections;
     *           This is an API-breaking change (especially around pub/sub), and local validation is recommended
     *
     * 1.2.0.8 - Fix processing of info=>redis_version to work with MS alpha redis
     * 1.2.0.7 - Client names now fully supported on 2.6.9+
     * 1.2.0.6 - Support client names on connections (in theory; API changes only)
     * 1.2.0.5 - Bug-fixes: large integer parsing
     * 1.2.0.4 - ConnectionUtils now supports sentinel
     * 1.2.0.3 - show current tie-breaker key in ConnectionUtils
     * 1.2.0.2 - added additional ConnectionUtils overloads to control master/slave behavior more granularly
     * 1.2.0.1 - adds SORT support (under Keys)
     * 1.2.0.0 - BREAKING CHANGE: SortedSets.{Rank|Score} now return nullable values
     *         - adds bindings for redis 2.6 commands
     *         - now strong-named
     *         - cumulative bug-fixes