From 3593c1a73873c4b17452c8db901547e686062080 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Fri, 9 Jan 2015 22:22:03 -0800 Subject: [PATCH] Pro 2.0 notes --- Pro-Changes.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Pro-Changes.md b/Pro-Changes.md index 290f42c18..89a0992ad 100644 --- a/Pro-Changes.md +++ b/Pro-Changes.md @@ -3,6 +3,21 @@ Sidekiq Pro Changelog Please see [http://sidekiq.org/pro](http://sidekiq.org/pro) for more details and how to buy. + +2.0.0 (see mperham/sidekiq#2130 for progress) +----------- + +- Batch IDs (bids) are now 14 char Base64-encoded strings, not 16 + char hex-encoded strings. +- Rework of the batch data model. This results in a 25% reduction in + data size in Redis. 5000 batches go from 6260 -> 4611 KB in Redis and + creation is 10% faster. +- Batch job errors no longer store the backtrace in Redis unless the + job's `backtrace` option is set. This should result in another big data + size reduction. +- Notifications must now be required first `require 'sidekiq/pro/notifications'` +- Remove deprecated APIs. + 1.9.2 -----------