Class: SolidCache::Entry
- Inherits:
-
Record
- Object
- ActiveRecord::Base
- Record
- SolidCache::Entry
show all
- Includes:
- Encryption, Expiration, Size
- Defined in:
- app/models/solid_cache/entry.rb,
app/models/solid_cache/entry/size.rb,
app/models/solid_cache/entry/encryption.rb,
app/models/solid_cache/entry/expiration.rb,
app/models/solid_cache/entry/size/estimate.rb,
app/models/solid_cache/entry/size/moving_average_estimate.rb
Defined Under Namespace
Modules: Encryption, Expiration, Size
Constant Summary
collapse
- ESTIMATED_ROW_OVERHEAD =
The estimated cost of an extra row in bytes, including fixed size columns, overhead, indexes and free space Based on experimentation on SQLite, MySQL and Postgresql. A bit high for SQLite (more like 90 bytes), but about right for MySQL/Postgresql.
140
- ESTIMATED_ENCRYPTION_OVERHEAD =
Assuming MessagePack serialization
170
- KEY_HASH_ID_RANGE =
-(2**63)..(2**63 - 1)
Constants inherited
from Record
Record::NULL_INSTRUMENTER
Class Method Summary
collapse
Methods inherited from Record
disable_instrumentation, each_shard, with_shard
Class Method Details
.clear_delete ⇒ Object
52
53
54
55
56
|
# File 'app/models/solid_cache/entry.rb', line 52
def clear_delete
without_query_cache do
in_batches.delete_all
end
end
|
.clear_truncate ⇒ Object
48
49
50
|
# File 'app/models/solid_cache/entry.rb', line 48
def clear_truncate
connection.truncate(table_name)
end
|
.delete_by_key(*keys) ⇒ Object
42
43
44
45
46
|
# File 'app/models/solid_cache/entry.rb', line 42
def delete_by_key(*keys)
without_query_cache do
where(key_hash: key_hashes_for(keys)).delete_all
end
end
|
.id_range ⇒ Object
69
70
71
72
73
|
# File 'app/models/solid_cache/entry.rb', line 69
def id_range
without_query_cache do
pick(Arel.sql("max(id) - min(id) + 1")) || 0
end
end
|
.lock_and_write(key, &block) ⇒ Object
58
59
60
61
62
63
64
65
66
67
|
# File 'app/models/solid_cache/entry.rb', line 58
def lock_and_write(key, &block)
transaction do
without_query_cache do
result = lock.where(key_hash: key_hash_for(key)).pick(:key, :value)
new_value = block.call(result&.first == key ? result[1] : nil)
write(key, new_value) if new_value
new_value
end
end
end
|
.read(key) ⇒ Object
30
31
32
|
# File 'app/models/solid_cache/entry.rb', line 30
def read(key)
read_multi([key])[key]
end
|
.read_multi(keys) ⇒ Object
34
35
36
37
38
39
40
|
# File 'app/models/solid_cache/entry.rb', line 34
def read_multi(keys)
without_query_cache do
query = Arel.sql(select_sql(keys), *key_hashes_for(keys))
connection.select_all(query, "SolidCache::Entry Load").cast_values(attribute_types).to_h
end
end
|
.write(key, value) ⇒ Object
18
19
20
|
# File 'app/models/solid_cache/entry.rb', line 18
def write(key, value)
write_multi([ { key: key, value: value } ])
end
|
.write_multi(payloads) ⇒ Object
22
23
24
25
26
27
28
|
# File 'app/models/solid_cache/entry.rb', line 22
def write_multi(payloads)
without_query_cache do
upsert_all \
add_key_hash_and_byte_size(payloads),
unique_by: upsert_unique_by, on_duplicate: :update, update_only: [ :key, :value, :byte_size ]
end
end
|