xapian_db 1.3.4 → 1.3.5
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 +7 -1
- data/lib/xapian_db/index_writers/direct_writer.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5a458e6c5f807a089ea34ea91540c095049a046
|
|
4
|
+
data.tar.gz: 66bc5684400514aa2f63dc9444818c26eff51712
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bff6ac2e547a3acf7bca24fa5280e78bed0bf850af35cfdae083f0ea053db91d3b8881e40b869f7fbadead3658ca41cac71dba01caaa210d5c2ca7badf886968
|
|
7
|
+
data.tar.gz: 45ac15e5c3b513579a0fdbd3bb83555abf8ee2695e0c98057550189d00626ee372352262ab567a757e189a76fad9812e00d06a60bf51f72cf430d0bdf07dbb14
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
|
+
##1.3.5 (August 3rd, 2013)
|
|
2
|
+
|
|
3
|
+
Changes:
|
|
4
|
+
|
|
5
|
+
- Rails4 deprecation resolved
|
|
6
|
+
- licence information added tot the gemspec
|
|
7
|
+
|
|
1
8
|
##1.3.4 (July 26th, 2013)
|
|
2
9
|
|
|
3
10
|
Changes:
|
|
4
11
|
|
|
5
12
|
- support for sidekiq queues
|
|
6
13
|
|
|
7
|
-
|
|
8
14
|
##1.3.3.1 (June 23th, 2013)
|
|
9
15
|
|
|
10
16
|
Fixes:
|
|
@@ -70,7 +70,7 @@ module XapianDb
|
|
|
70
70
|
# Process the objects in batches to reduce the memory footprint
|
|
71
71
|
nr_of_batches = (obj_count / BATCH_SIZE) + 1
|
|
72
72
|
nr_of_batches.times do |batch|
|
|
73
|
-
base_query.
|
|
73
|
+
base_query.offset(batch * BATCH_SIZE).limit(BATCH_SIZE).order(klass.order_condition(primary_key)).each do |obj|
|
|
74
74
|
reindex obj, false
|
|
75
75
|
pbar.increment if show_progressbar
|
|
76
76
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xapian_db
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gernot Kogler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: daemons
|
|
@@ -222,7 +222,8 @@ files:
|
|
|
222
222
|
- CHANGELOG.md
|
|
223
223
|
- Rakefile
|
|
224
224
|
homepage: https://github.com/garaio/xapian_db
|
|
225
|
-
licenses:
|
|
225
|
+
licenses:
|
|
226
|
+
- MIT
|
|
226
227
|
metadata: {}
|
|
227
228
|
post_install_message:
|
|
228
229
|
rdoc_options:
|