cache_query 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e13e98e319652918cbc60794a70ce85e684b6357
4
+ data.tar.gz: d436cbbc84fe86153e9b0ce3d3e64178515a68b6
5
+ SHA512:
6
+ metadata.gz: 69ca272b69c8985f88be40940e76c5d7334512877d4781ce146f611f884c18b4560c89ed6846966201a05dcaddd3ddad64979767a10d4cf05bb518fc57d23180
7
+ data.tar.gz: d4fbc9bb73411e4e15c01fb9184c310c69b832508ba15b3b38412e938e96b4209da8f4a80300e0251eb1553612b091d805a9ebf5b72a369403c9be097301347f
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,17 @@
1
+ #source 'https://rubygems.org'
2
+ source 'http://ruby.taobao.org'
3
+
4
+ # Specify your gem's dependencies in cache_query.gemspec
5
+ gemspec
6
+
7
+ gem 'rails', '4.0.0'
8
+ gem 'sqlite3'
9
+ gem 'sass-rails', '~> 4.0.0'
10
+ gem 'uglifier', '>= 1.3.0'
11
+ gem 'coffee-rails', '~> 4.0.0'
12
+ gem 'jquery-rails'
13
+ gem 'turbolinks'
14
+
15
+ group :doc do
16
+ gem 'sdoc', require: false
17
+ end
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 soffolk
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.
@@ -0,0 +1,38 @@
1
+ # CacheQuery
2
+
3
+ Cache Every Query For Your Rails App
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'cache_query'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install cache_query
18
+
19
+ ## Usage
20
+
21
+ + use `cache_find` instead of `find`
22
+ + use `cache_where` instead of `where`
23
+ + use `cache_#{association}` instead of `association`
24
+
25
+
26
+ ## Todo
27
+
28
+ - [x] Add `cache_find`
29
+ - [ ] Add `cache_where`
30
+ - [x] Add `cache_#{association}`
31
+
32
+ ## Contributing
33
+
34
+ 1. Fork it
35
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
36
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
37
+ 4. Push to the branch (`git push origin my-new-feature`)
38
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cache_query/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cache_query"
8
+ spec.version = CacheQuery::VERSION
9
+ spec.authors = ["soffolk"]
10
+ spec.email = ["zlx.star@gmail.com"]
11
+ spec.description = %q{Cache Every Query}
12
+ spec.summary = %q{Cache Every Query}
13
+ spec.homepage = "https://github.com/zlx/cache_query"
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 "rails", "> 3"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ end
@@ -0,0 +1,61 @@
1
+ require "cache_query/version"
2
+ require 'active_support/concern'
3
+ require 'set'
4
+
5
+ module CacheQuery
6
+ extend ActiveSupport::Concern
7
+
8
+ included do
9
+ cattr_accessor :class_cache_keys
10
+ after_commit :flush_cache
11
+
12
+ def flush_cache
13
+ Rails.cache.delete "all_#{name}"
14
+ self.class_cache_keys.each{ |cache_key| Rails.cache.delete cache_key }
15
+ end
16
+ end
17
+
18
+ def cache_where
19
+ # place holder
20
+ end
21
+
22
+ def method_missing(name, *args, &block)
23
+ # you need add touch for association record to flush the cache
24
+ if name.to_s =~ /cache_((.*)_count)/ && self.respond_to?($2)
25
+ Rails.cache.fetch([self, $1]) do
26
+ self.__send__($2).__send__(:count)
27
+ end
28
+ elsif name.to_s =~ /cache_(.*)/ && self.respond_to?($1)
29
+ Rails.cache.fetch([self, $1]) do
30
+ query_result = self.__send__($1)
31
+ if query_result.is_a?(ActiveRecord::Relation)
32
+ query_result.to_a
33
+ else
34
+ query_result
35
+ end
36
+ end
37
+ else
38
+ super
39
+ end
40
+ end
41
+
42
+ module ClassMethods
43
+ def cache_find id
44
+ Rails.cache.fetch([name, id]) { self.find_by_id id }
45
+ end
46
+
47
+ def cache_all
48
+ Rails.cache.fetch("all_#{name}") { name.constantize.all.to_a }
49
+ end
50
+
51
+ def cache cache_name, &block
52
+ if block_given?
53
+ self.class_cache_keys ||= Set.new
54
+ self.class_cache_keys.add(cache_name)
55
+ Rails.cache.fetch(cache_name) { yield }
56
+ end
57
+ end
58
+ end
59
+
60
+ # Your code goes here...
61
+ end
@@ -0,0 +1,3 @@
1
+ module CacheQuery
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cache_query
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - soffolk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>'
18
+ - !ruby/object:Gem::Version
19
+ version: '3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>'
25
+ - !ruby/object:Gem::Version
26
+ version: '3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
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
+ description: Cache Every Query
56
+ email:
57
+ - zlx.star@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - cache_query.gemspec
68
+ - lib/cache_query.rb
69
+ - lib/cache_query/version.rb
70
+ homepage: https://github.com/zlx/cache_query
71
+ licenses:
72
+ - MIT
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ requirements: []
89
+ rubyforge_project:
90
+ rubygems_version: 2.0.3
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: Cache Every Query
94
+ test_files: []
95
+ has_rdoc: