nsq-ruby 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +9 -1
- data/lib/nsq/frames/message.rb +1 -1
- data/lib/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: af8d77120d7905bfe73739801e6c7237984dfb9c
|
4
|
+
data.tar.gz: b9f1bdbb317de45b6e47d1923e86e1d9295a7bc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 515ad2a7d29426b69e0cd4c6c0388140c0d5a75d4ea9bbb7879d34185cd8fbd0356bec49e2b6e63f6c785aae302ecc5623ca8d4b50b39704394dcaff62cdae80
|
7
|
+
data.tar.gz: 3ede61bb31257542fb6ed7ce16dab944d94ebfe45b1b16d5e3cc6e09ceb01984181fef53ffacdf9052263ee5e1790cb61ca92ef0026fb710bae27837c78fdb62
|
data/README.md
CHANGED
@@ -177,6 +177,14 @@ reconnect.
|
|
177
177
|
This is automatically called `at_exit`, but it's good practice to close your
|
178
178
|
producers when you're done with them.
|
179
179
|
|
180
|
+
**Note:** This terminates the connection to NSQ immediately. If you're writing
|
181
|
+
messages faster than they can be sent to NSQ, you may have messages in the
|
182
|
+
producer's internal queue. Calling `#terminate` before they're sent will cause
|
183
|
+
these messages to be lost. After you write your last message, consider sleeping
|
184
|
+
for a second before you call `#terminate`.
|
185
|
+
|
186
|
+
|
187
|
+
|
180
188
|
|
181
189
|
## Consumer
|
182
190
|
|
@@ -391,7 +399,7 @@ millions of messages a day.
|
|
391
399
|
|
392
400
|
## MIT License
|
393
401
|
|
394
|
-
Copyright (C)
|
402
|
+
Copyright (C) 2018 Wistia, Inc.
|
395
403
|
|
396
404
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
397
405
|
this software and associated documentation files (the "Software"), to deal in
|
data/lib/nsq/frames/message.rb
CHANGED
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nsq-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wistia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
109
|
version: '0'
|
110
110
|
requirements: []
|
111
111
|
rubyforge_project:
|
112
|
-
rubygems_version: 2.
|
112
|
+
rubygems_version: 2.6.8
|
113
113
|
signing_key:
|
114
114
|
specification_version: 4
|
115
115
|
summary: Ruby client library for NSQ
|