solr_cursorstream 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85344a1d5cbdad956770cdb60c76c3304a12f11707ebffc59096abbe403b5d53
4
- data.tar.gz: 13f93a423feab337b1bde721b0b13bc3335cf4eb976e3d6e04cf629cfa486b0d
3
+ metadata.gz: 2e3d3cf7d36d2e1feb41469bd02fef47e283a628b405372b1f7ffff6f0f93ab5
4
+ data.tar.gz: 7058429a718019ee62d773abf7aa0142fab23c2473178929b89734125d188161
5
5
  SHA512:
6
- metadata.gz: e93a0a7dca05d60f9a2f2f6731071a1d9896df6de2899928ebda53c95876cc7b08677c88be7ec9986e848b8c63b622369d6cdd4e57e9f638c40a778671efe500
7
- data.tar.gz: 1c2b116c552f38d430fda98080f1af9ed728e88eabca60f926d6408c0c593c3258dbab60bebb4cfd3d2f6d5411db54b2d1c2a72419af263cff7a96158a859590
6
+ metadata.gz: 8a215e2969745c1bd62011e30f8fa21940fb60998553372127bd0f8b17c6371a8b7e83b31805df3ada851dd3185bcbb53b58813301b26aad9658bf2a289bdc4a
7
+ data.tar.gz: fff3c6c476750aca864700aab3e3c7e6569234d3f6d74f0bbed780f8ef7c06de6df57ff26c7001e6ddf7de705ce181a71280f1c5f375d4f90c9bbc07a6005502
data/README.md CHANGED
@@ -6,13 +6,16 @@ exposing the stream as a normal ruby enumerator.
6
6
 
7
7
  Note that this is different from true streaming of results via, e.g.,
8
8
  the [default `/export` handler](https://solr.apache.org/guide/8_6/exporting-result-sets.html).
9
- Those queries can involve more complex processing, but are restricted in
10
- that you
11
- * can't use relevancy ranking
12
- * all fields have to be `docValues`.
9
+
10
+ Those queries can involve more complex processing, but don't fit all use
11
+ cases:
12
+ * `/export` can't use relevancy ranking as a sort; `Solr::CursorStream` can
13
+ * `/export` requires all fields have to be `docValues`,
14
+ `Solr::CursorStream` doesn't.
13
15
 
14
16
  Cursor-based streaming allows, with some restrictions,
15
- downloading large sets of data without the "deep paging" problems
17
+ downloading large sets of data without the "deep paging"
18
+ out-of-memory problems
16
19
  associated with just using the `start` and `rows` parameters.
17
20
 
18
21
  The only significant restrictions is that _the sort specification MUST
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Solr
4
4
  class CursorStream
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solr_cursorstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bill Dueber