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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e23b6fa549c8adbed998d83708a05d5d52b4e1f30dee32a2db74237b395b085f
4
- data.tar.gz: 0c76af9bbc305a4fa43a592e2d13aa6e879908821c3b075710418c3ee81c2cb9
3
+ metadata.gz: 47fed52773afcb7eedfc62ec2413932cf61ced9029aacfd8ec2e36149b1df953
4
+ data.tar.gz: c2c76a7b5993d077dad3e8088d839f7ea2d19af43cdff72586a6fbec4f4e7383
5
5
  SHA512:
6
- metadata.gz: e5ac4fa4a741bb14325df161a6725061d7194350468e1ae2021fbfca47048aa156c971c788a90629ab363393a4d5f0426da7fe15a5f8f3d8eb08d8c8af17cc04
7
- data.tar.gz: b000b1f7400193fb83b96a765f94ffca2f56195cf04b026bd225000bc8044be17109e462fdec6c7f43257437968d578fb8029a19eea6e6ca36bc9e4322e9e6c4
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.2" # {x-release-please-version}
3
+ version = "1.0.4" # {x-release-please-version}
4
4
  edition = "2021"
5
- authors = ["Alexander Baygeldin"]
6
- repository = "https://github.com/baygeldin/tantiny"
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+)$"
@@ -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.new
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
- Helpers.with_lock(lockfile_path, &block)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tantiny
4
- VERSION = "1.0.2" # {x-release-please-version}
4
+ VERSION = "1.0.4" # {x-release-please-version}
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tantiny-in-memory
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Toscano