tantiny-in-memory 1.0.2 → 1.0.3

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: 3de6fee32c4674987991d2ea7aea0e7ea7634383a9850ae3370e154fe66ed390
4
+ data.tar.gz: 05b56cdb93baac1d9f229a95274cde3c9be0ffc590c049f26a264089fb9bea7d
5
5
  SHA512:
6
- metadata.gz: e5ac4fa4a741bb14325df161a6725061d7194350468e1ae2021fbfca47048aa156c971c788a90629ab363393a4d5f0426da7fe15a5f8f3d8eb08d8c8af17cc04
7
- data.tar.gz: b000b1f7400193fb83b96a765f94ffca2f56195cf04b026bd225000bc8044be17109e462fdec6c7f43257437968d578fb8029a19eea6e6ca36bc9e4322e9e6c4
6
+ metadata.gz: 87cefeaa2437ccfa064dd83100751bf2286d96228281d48d26f43a7d46db58d9d2716da435ae77ccd5e77c4315d07b0916296229ee9a93f72fd24b37b77c83e2
7
+ data.tar.gz: 2b94726aa14f1b1c46bafcaf4acb0b8198c7657b76d61f4b1a88fb9d264532ca9f17b6367d62ea7a238b2dc29af90e6c991bfbc083cb419b5991e687c1c5cc80
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.3](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.2...v1.0.3) (2023-09-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * file related methods ([7369491](https://github.com/a-chris/tantiny-in-memory/commit/736949108cc883fbc7d8cd25a57746778b0ba6e2))
9
+
3
10
  ## [1.0.2](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.1...v1.0.2) (2023-09-04)
4
11
 
5
12
 
data/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "tantiny"
3
- version = "1.0.2" # {x-release-please-version}
3
+ version = "1.0.3" # {x-release-please-version}
4
4
  edition = "2021"
5
5
  authors = ["Alexander Baygeldin"]
6
6
  repository = "https://github.com/baygeldin/tantiny"
@@ -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.3" # {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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Toscano