Class: None
Overview
– Copyright © Richard Uren 2016 <[email protected]> All Rights Reserved
LICENSE: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ++
Instance Method Summary collapse
-
#del(key) ⇒ Object
Delete key.
-
#flush ⇒ Object
Flush cache.
-
#get(key) ⇒ Object
Get key.
-
#get_file_path(key) ⇒ Object
Get fully qualified path to file.
-
#initialize(config = {}) ⇒ None
constructor
Construct a new None cache object.
-
#set(key, data, ttl) ⇒ Object
Set key.
Constructor Details
#initialize(config = {}) ⇒ None
Construct a new None cache object.
30 31 |
# File 'lib/handset_detection/cache/none.rb', line 30 def initialize(config={}) end |
Instance Method Details
#del(key) ⇒ Object
Delete key
47 48 49 |
# File 'lib/handset_detection/cache/none.rb', line 47 def del(key) false end |
#flush ⇒ Object
Flush cache
52 53 54 |
# File 'lib/handset_detection/cache/none.rb', line 52 def flush false end |
#get(key) ⇒ Object
Get key
35 36 37 |
# File 'lib/handset_detection/cache/none.rb', line 35 def get(key) false end |
#get_file_path(key) ⇒ Object
Get fully qualified path to file
57 58 59 |
# File 'lib/handset_detection/cache/none.rb', line 57 def get_file_path(key) false end |
#set(key, data, ttl) ⇒ Object
Set key
41 42 43 |
# File 'lib/handset_detection/cache/none.rb', line 41 def set(key, data, ttl) false end |