cachetastic-memcache-pool 0.1.0 → 0.1.1
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.
- data/README.md +8 -0
- data/cachetastic-memcache-pool.gemspec +1 -1
- data/lib/cachetastic/adapters/memcache_pool/version.rb +1 -1
- metadata +8 -8
- data/README +0 -0
data/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Cachetastic Memcache Pool Adapter
|
|
2
|
+
----------
|
|
3
|
+
|
|
4
|
+
This is a memcached adapter for cachetastic that shares connections for caches with the same server list and mc_options configuration. The configuration for this adapter is the same as for the built-in memcached adapter.
|
|
5
|
+
|
|
6
|
+
~~~~~{ruby}
|
|
7
|
+
configatron.cachetastic.defaults.adapter = Cachetastic::Adapters::MemcachePool::Adapter
|
|
8
|
+
~~~~~
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cachetastic-memcache-pool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jason Wadsworth
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-09-
|
|
18
|
+
date: 2011-09-24 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -74,12 +74,12 @@ dependencies:
|
|
|
74
74
|
requirements:
|
|
75
75
|
- - ~>
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
hash:
|
|
77
|
+
hash: 53
|
|
78
78
|
segments:
|
|
79
79
|
- 1
|
|
80
80
|
- 8
|
|
81
|
-
-
|
|
82
|
-
version: 1.8.
|
|
81
|
+
- 1
|
|
82
|
+
version: 1.8.1
|
|
83
83
|
type: :runtime
|
|
84
84
|
version_requirements: *id004
|
|
85
85
|
description: Cachetastic Memcached Adapter with Connection Pooling
|
|
@@ -95,7 +95,7 @@ files:
|
|
|
95
95
|
- .gitignore
|
|
96
96
|
- .rspec
|
|
97
97
|
- Gemfile
|
|
98
|
-
- README
|
|
98
|
+
- README.md
|
|
99
99
|
- Rakefile
|
|
100
100
|
- cachetastic-memcache-pool.gemspec
|
|
101
101
|
- lib/cachetastic/adapters/memcache_pool.rb
|
data/README
DELETED
|
File without changes
|