tantiny-in-memory 1.0.2 → 1.0.4
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 +15 -0
- data/Cargo.toml +4 -4
- data/lib/tantiny/helpers.rb +0 -10
- data/lib/tantiny/index.rb +2 -7
- data/lib/tantiny/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47fed52773afcb7eedfc62ec2413932cf61ced9029aacfd8ec2e36149b1df953
|
4
|
+
data.tar.gz: c2c76a7b5993d077dad3e8088d839f7ea2d19af43cdff72586a6fbec4f4e7383
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45c783ed568f5e80b4d5404fa2522be1302af450884ee52892b122427ded3cb1a8b5400e33f74490aebe6f7f871bf4470be9005b133c3356957bc9abb9432a68
|
7
|
+
data.tar.gz: d21658335c9c33ac258f095f0ff30a11682482702bc7d69e52cc7eb3a7d160a15a9bff1d895f2e5de5f4a475df1f69eaa7afda17af04f1150e5963ba980153f4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.0.4](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.3...v1.0.4) (2023-09-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* cargo edition 2021 ([fe5cd8c](https://github.com/a-chris/tantiny-in-memory/commit/fe5cd8cb264761026a9092ec8e2ac7cc674145de))
|
9
|
+
* update cargo settings ([9744782](https://github.com/a-chris/tantiny-in-memory/commit/97447825d437c44332c66334bc3e070afec23913))
|
10
|
+
|
11
|
+
## [1.0.3](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.2...v1.0.3) (2023-09-04)
|
12
|
+
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
* file related methods ([7369491](https://github.com/a-chris/tantiny-in-memory/commit/736949108cc883fbc7d8cd25a57746778b0ba6e2))
|
17
|
+
|
3
18
|
## [1.0.2](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.1...v1.0.2) (2023-09-04)
|
4
19
|
|
5
20
|
|
data/Cargo.toml
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
[package]
|
2
2
|
name = "tantiny"
|
3
|
-
version = "1.0.
|
3
|
+
version = "1.0.4" # {x-release-please-version}
|
4
4
|
edition = "2021"
|
5
|
-
authors = ["
|
6
|
-
repository = "https://github.com/
|
5
|
+
authors = ["Christian Toscano"]
|
6
|
+
repository = "https://github.com/a-chris/tantiny-in-memory"
|
7
7
|
|
8
8
|
[lib]
|
9
9
|
crate-type = ["cdylib"]
|
@@ -17,4 +17,4 @@ paste = "1.0"
|
|
17
17
|
[package.metadata.thermite]
|
18
18
|
github_releases = true
|
19
19
|
github_release_type = "latest"
|
20
|
-
git_tag_regex = "^v(\\d+\\.\\d+\\.\\d+)$"
|
20
|
+
git_tag_regex = "^v(\\d+\\.\\d+\\.\\d+)$"
|
data/lib/tantiny/helpers.rb
CHANGED
@@ -5,15 +5,5 @@ module Tantiny
|
|
5
5
|
def self.timestamp(date)
|
6
6
|
date.to_datetime.iso8601
|
7
7
|
end
|
8
|
-
|
9
|
-
def self.with_lock(lockfile)
|
10
|
-
File.open(lockfile, File::CREAT) do |file|
|
11
|
-
file.flock(File::LOCK_EX)
|
12
|
-
|
13
|
-
yield
|
14
|
-
|
15
|
-
file.flock(File::LOCK_UN)
|
16
|
-
end
|
17
|
-
end
|
18
8
|
end
|
19
9
|
end
|
data/lib/tantiny/index.rb
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
module Tantiny
|
4
4
|
class Index
|
5
|
-
LOCKFILE = ".tantiny.lock"
|
6
5
|
DEFAULT_WRITER_MEMORY = 5_000_000 # 5MB
|
7
6
|
DEFAULT_LIMIT = 10
|
8
7
|
|
@@ -116,7 +115,7 @@ module Tantiny
|
|
116
115
|
rescue TantivyError => e
|
117
116
|
case e.message
|
118
117
|
when /Failed to acquire Lockfile/
|
119
|
-
raise IndexWriterBusyError
|
118
|
+
raise IndexWriterBusyError
|
120
119
|
else
|
121
120
|
raise
|
122
121
|
end
|
@@ -154,12 +153,8 @@ module Tantiny
|
|
154
153
|
|
155
154
|
def synchronize(&block)
|
156
155
|
@transaction_semaphore.synchronize do
|
157
|
-
|
156
|
+
block.call
|
158
157
|
end
|
159
158
|
end
|
160
|
-
|
161
|
-
def lockfile_path
|
162
|
-
@lockfile_path ||= File.join(@path, LOCKFILE)
|
163
|
-
end
|
164
159
|
end
|
165
160
|
end
|
data/lib/tantiny/version.rb
CHANGED