fluent-plugin-storage-memcached 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0575e5218b0927557533a19c1135c55f5b09abf
4
- data.tar.gz: 8192009a393180d49b3a8081d4d9b77ffcd419ff
3
+ metadata.gz: c34d8c70d6dd3e8f2ff41b4a96945edd8fcb3b2f
4
+ data.tar.gz: c6612927f7f76de9a80abbf429ff4c885bccce38
5
5
  SHA512:
6
- metadata.gz: beeb6b5c4888c9c5373eeccc4325d0dadf85426843a2ab561b9e15745070514aef6d7974c7d820fb0da9c38c6a32394caddb72a82f09c701b4c1270f6eeff628
7
- data.tar.gz: 7be9d3c6f60283c92f462d72d81e9f65567e5a26e6fea3e2adf6efe4d8337f3ae3297f47bf76af20edfef126edc5078180600a462003c7a4067f36f85643950e
6
+ metadata.gz: c6414cf81c25f0353b11d69f7dc5c195f7e8742357c0e697d36c9997959cc0ec7efa060f27d1be76e3cb69ece5c1a671762a6fb88a37b145dd582261b7d05b62
7
+ data.tar.gz: 80ecbd8dea134013c23ef5b9e46c4a5bb1fbef7105373290737e50016345ae0a21f8cbe64716cbe78a90fa442cf4ba1fed010bf724fa6cf8d34455e04c85e19a
data/README.md CHANGED
@@ -26,7 +26,7 @@ Or install it yourself as:
26
26
  <storage>
27
27
  @type memcached
28
28
 
29
- path my_key # or conf.arg will be used as redis key
29
+ path my_key # or conf.arg will be used as memcached key
30
30
  host localhost # localhost is default
31
31
  port 11211 # 11211 is default
32
32
  namespace app_v1 # app_v1 is default
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-storage-memcached"
7
- spec.version = "0.0.1"
7
+ spec.version = "0.0.2"
8
8
  spec.authors = ["Hiroshi Hatake"]
9
9
  spec.email = ["cosmo0920.oucc@gmail.com"]
10
10
 
@@ -48,7 +48,7 @@ module Fluent
48
48
  end
49
49
 
50
50
  options = {
51
- thread_safe: true,
51
+ threadsafe: true,
52
52
  namespace: @namespace,
53
53
  compress: @compress,
54
54
  serializer: @serializer,
@@ -65,7 +65,7 @@ module Fluent
65
65
  data = @serializer.load(object)
66
66
  raise Fluent::ConfigError, "Invalid contents (not object) in plugin memcached storage: '#{@path}'" unless data.is_a?(Hash) unless data.is_a?(Hash)
67
67
  rescue => e
68
- log.error "failed to read data from plugin redis storage", path: @path, error: e
68
+ log.error "failed to read data from plugin memcached storage", path: @path, error: e
69
69
  raise Fluent::ConfigError, "Unexpected error: failed to read data from plugin memcached storage: '#{@path}'"
70
70
  end
71
71
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-storage-memcached
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi Hatake