From 0d4b726f7ba271729870c30770506bfd78d73b16 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Mon, 24 Mar 2014 20:43:33 -0700 Subject: [PATCH] wordsmithing --- Changes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Changes.md b/Changes.md index 4272cb92..28970208 100644 --- a/Changes.md +++ b/Changes.md @@ -31,9 +31,9 @@ end ``` - **Process Heartbeat** - each Sidekiq process will ping Redis every 5 seconds to give a summary of the Sidekiq population at work. -- **Targetable Client** - Sidekiq::Client instances can target different - Redis instances, allowing very large Sidekiq installations to scale by - targeting different jobs to different Redis instances. +- **Shardable Client** - Sidekiq::Client instances can use a custom + Redis connection pool, allowing very large Sidekiq installations to scale by + sharding: sending different jobs to different Redis instances. ```ruby client = Sidekiq::Client.new(ConnectionPool.new { Redis.new }) client.push(...)