philiprehberger-cache_kit 0.3.0 → 0.3.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -9
- data/README.md +2 -8
- data/lib/philiprehberger/cache_kit/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce26e89d2d983dffc727ddceeef5c5fa4a16106e315e4aba311c60285bba8e98
|
|
4
|
+
data.tar.gz: 9ea6436a2721e39d386f21894cdc115766b06cc5521ae58cf9baf91738b04dae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8012e657686d668db88ee67b713ff4b437b669011820b92be2c3eea0a40ce636a76ac2594d83c457d9107eeacdbc7691ef519b1e112289e740855e256f4589d2
|
|
7
|
+
data.tar.gz: 1a665ad412b698854c016f9a967e7fcad7e2f5d5a2f654bca6b92a6e975dfd35dfb27afd07f1022ad86d1a518942b290f02f3c9faa20ca40e2dfc7ca12548dbe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this gem will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.3.2] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Remove inline comments from Development section to match template
|
|
14
|
+
|
|
15
|
+
## [0.3.1] - 2026-03-22
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Update rubocop configuration for Windows compatibility
|
|
19
|
+
|
|
20
|
+
## [0.3.0] - 2026-03-17
|
|
4
21
|
|
|
5
22
|
### Added
|
|
6
23
|
- Thread-safe `fetch` — compute-on-miss now holds the lock for the entire operation, preventing duplicate computation
|
|
@@ -9,18 +26,12 @@
|
|
|
9
26
|
- Batch retrieval via `get_many(keys)` — fetch multiple keys in a single lock acquisition, returns a hash
|
|
10
27
|
- Snapshot and restore via `snapshot` / `restore(data)` — serialize and deserialize cache state for warm restarts
|
|
11
28
|
|
|
12
|
-
## 0.2.2
|
|
29
|
+
## [0.2.2] - 2026-03-16
|
|
13
30
|
|
|
31
|
+
### Changed
|
|
14
32
|
- Add License badge to README
|
|
15
33
|
- Add bug_tracker_uri to gemspec
|
|
16
34
|
|
|
17
|
-
All notable changes to this gem will be documented in this file.
|
|
18
|
-
|
|
19
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
20
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
21
|
-
|
|
22
|
-
## [Unreleased]
|
|
23
|
-
|
|
24
35
|
## [0.2.1] - 2026-03-13
|
|
25
36
|
|
|
26
37
|
### Fixed
|
data/README.md
CHANGED
|
@@ -18,12 +18,6 @@ Add to your Gemfile:
|
|
|
18
18
|
gem "philiprehberger-cache_kit"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Then run:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
bundle install
|
|
25
|
-
```
|
|
26
|
-
|
|
27
21
|
Or install directly:
|
|
28
22
|
|
|
29
23
|
```bash
|
|
@@ -199,8 +193,8 @@ new_cache.restore(Marshal.load(File.read("cache.bin")))
|
|
|
199
193
|
|
|
200
194
|
```bash
|
|
201
195
|
bundle install
|
|
202
|
-
bundle exec rspec
|
|
203
|
-
bundle exec rubocop
|
|
196
|
+
bundle exec rspec
|
|
197
|
+
bundle exec rubocop
|
|
204
198
|
```
|
|
205
199
|
|
|
206
200
|
## License
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-cache_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A lightweight, thread-safe in-memory LRU cache with TTL expiration and
|
|
14
14
|
tag-based bulk invalidation for Ruby applications.
|
|
@@ -37,6 +37,7 @@ metadata:
|
|
|
37
37
|
homepage_uri: https://github.com/philiprehberger/rb-cache-kit
|
|
38
38
|
source_code_uri: https://github.com/philiprehberger/rb-cache-kit
|
|
39
39
|
changelog_uri: https://github.com/philiprehberger/rb-cache-kit/blob/main/CHANGELOG.md
|
|
40
|
+
bug_tracker_uri: https://github.com/philiprehberger/rb-cache-kit/issues
|
|
40
41
|
rubygems_mfa_required: 'true'
|
|
41
42
|
post_install_message:
|
|
42
43
|
rdoc_options: []
|