lowkiq 1.0.0 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +19 -19
- data/LICENSE.md +13 -3
- data/README.md +378 -308
- data/README.ru.md +645 -0
- data/docker-compose.yml +1 -1
- data/lib/lowkiq.rb +6 -2
- data/lib/lowkiq/extend_tracker.rb +1 -1
- data/lib/lowkiq/queue/fetch.rb +2 -2
- data/lib/lowkiq/queue/keys.rb +16 -4
- data/lib/lowkiq/queue/queue.rb +103 -55
- data/lib/lowkiq/script.rb +42 -0
- data/lib/lowkiq/server.rb +4 -0
- data/lib/lowkiq/shard_handler.rb +3 -3
- data/lib/lowkiq/version.rb +1 -1
- data/lowkiq.gemspec +3 -2
- metadata +12 -10
- data/lib/lowkiq/queue/marshal.rb +0 -23
data/lib/lowkiq/queue/marshal.rb
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
module Lowkiq
|
2
|
-
module Queue
|
3
|
-
module Marshal
|
4
|
-
class << self
|
5
|
-
def dump_payload(data)
|
6
|
-
::Marshal.dump data
|
7
|
-
end
|
8
|
-
|
9
|
-
def load_payload(str)
|
10
|
-
::Marshal.load str
|
11
|
-
end
|
12
|
-
|
13
|
-
def dump_data(data)
|
14
|
-
::Marshal.dump data
|
15
|
-
end
|
16
|
-
|
17
|
-
def load_data(str)
|
18
|
-
::Marshal.load str
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|