tdiary-cache-redis 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +6 -0
- data/lib/tdiary/cache/redis.rb +100 -0
- data/lib/tdiary/cache/redis/version.rb +7 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/tdiary/cache/redis_spec.rb +11 -0
- data/tdiary-cache-redis.gemspec +27 -0
- metadata +129 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0c3e3f5cef4befe0f97d4abcf045047de4f7b9df
|
4
|
+
data.tar.gz: c7195b49ddce539fdad60fb66f9373ef480d8a77
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5cfe70d4e473f09c59c8bed4f3896210a251bd14e70ccf050d599d04ee9b427e60c04235e66a4369ebe9ca1851ea8c3b76c56c6fca21aeda8730769358c89040
|
7
|
+
data.tar.gz: 92cd34421c0e0bace8d763cc840dd6a17b0e1c6a58826eb00f475e299e0574ab09d0925716ef67e684e89b7358fba9ad08983b100e9632d54db6ec4bf06d1185
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 SHIBATA Hiroshi
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Tdiary::Cache::Redis
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'tdiary-cache-redis'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install tdiary-cache-redis
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
require 'redis'
|
2
|
+
require 'redis-namespace'
|
3
|
+
require 'yaml'
|
4
|
+
|
5
|
+
module TDiary
|
6
|
+
module Cache
|
7
|
+
def restore_cache(prefix)
|
8
|
+
if key = cache_key(prefix)
|
9
|
+
restore_data(key)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def store_cache(cache, prefix)
|
14
|
+
if key = cache_key(prefix)
|
15
|
+
store_data(cache, key)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def clear_cache(target = :all)
|
20
|
+
if target == :all
|
21
|
+
delete_data(:all)
|
22
|
+
else
|
23
|
+
ym = target.to_s.scan(/\d{4}\d{2}/)[0]
|
24
|
+
['latest.rb', 'i.latest.rb', "#{ym}.rb", "i.#{ym}.rb"].each do |key|
|
25
|
+
delete_data(key)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
def restore_data(key)
|
33
|
+
obj = redis.get(key)
|
34
|
+
if obj.nil?
|
35
|
+
nil
|
36
|
+
else
|
37
|
+
YAML.load(obj)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def store_data(data, key)
|
42
|
+
redis.set(key, YAML.dump(data))
|
43
|
+
end
|
44
|
+
|
45
|
+
def delete_data(key)
|
46
|
+
if key == :all
|
47
|
+
redis.flushdb
|
48
|
+
else
|
49
|
+
redis.del(key)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def restore_parser_cache(date, key = nil)
|
54
|
+
obj = redis.get(date.strftime("%Y%m.parser"))
|
55
|
+
if obj.nil?
|
56
|
+
nil
|
57
|
+
else
|
58
|
+
YAML.load(obj)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def store_parser_cache(date, obj, key = nil)
|
63
|
+
redis.set(date.strftime("%Y%m.parser"), YAML.dump(obj))
|
64
|
+
end
|
65
|
+
|
66
|
+
def clear_parser_cache(date)
|
67
|
+
redis.flushdb
|
68
|
+
end
|
69
|
+
|
70
|
+
def cache_key(prefix)
|
71
|
+
if @tdiary.is_a?(TDiaryMonth)
|
72
|
+
"#{prefix}#{@tdiary.rhtml.sub( /month/, @tdiary.date.strftime( '%Y%m' ) ).sub( /\.rhtml$/, '.rb' )}"
|
73
|
+
elsif @tdiary.is_a?(TDiaryLatest)
|
74
|
+
if @tdiary.cgi.params['date'][0]
|
75
|
+
nil
|
76
|
+
else
|
77
|
+
"#{prefix}#{@tdiary.rhtml.sub( /\.rhtml$/, '.rb' )}"
|
78
|
+
end
|
79
|
+
else
|
80
|
+
nil
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def redis
|
85
|
+
@_client ||= if @tdiary.conf.user_name
|
86
|
+
Redis::Namespace.new(@tdiary.conf.user_name.to_sym, Redis.new)
|
87
|
+
else
|
88
|
+
Redis.new
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# Local Variables:
|
95
|
+
# mode: ruby
|
96
|
+
# indent-tabs-mode: t
|
97
|
+
# tab-width: 3
|
98
|
+
# ruby-indent-level: 3
|
99
|
+
# End:
|
100
|
+
# vim: ts=3
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'tdiary/cache/redis/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "tdiary-cache-redis"
|
8
|
+
spec.version = Tdiary::Cache::Redis::VERSION
|
9
|
+
spec.authors = ["SHIBATA Hiroshi"]
|
10
|
+
spec.email = ["shibata.hiroshi@gmail.com"]
|
11
|
+
spec.summary = %q{tDiary cache with redis}
|
12
|
+
spec.description = %q{tDiary cache with redis}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'redis'
|
22
|
+
spec.add_dependency 'redis-namespace'
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
spec.add_development_dependency "rspec"
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tdiary-cache-redis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- SHIBATA Hiroshi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-10-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: redis
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: redis-namespace
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: tDiary cache with redis
|
84
|
+
email:
|
85
|
+
- shibata.hiroshi@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- lib/tdiary/cache/redis.rb
|
98
|
+
- lib/tdiary/cache/redis/version.rb
|
99
|
+
- spec/spec_helper.rb
|
100
|
+
- spec/tdiary/cache/redis_spec.rb
|
101
|
+
- tdiary-cache-redis.gemspec
|
102
|
+
homepage: ''
|
103
|
+
licenses:
|
104
|
+
- MIT
|
105
|
+
metadata: {}
|
106
|
+
post_install_message:
|
107
|
+
rdoc_options: []
|
108
|
+
require_paths:
|
109
|
+
- lib
|
110
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
115
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
requirements: []
|
121
|
+
rubyforge_project:
|
122
|
+
rubygems_version: 2.1.9
|
123
|
+
signing_key:
|
124
|
+
specification_version: 4
|
125
|
+
summary: tDiary cache with redis
|
126
|
+
test_files:
|
127
|
+
- spec/spec_helper.rb
|
128
|
+
- spec/tdiary/cache/redis_spec.rb
|
129
|
+
has_rdoc:
|