meilisearch-rails 0.14.2 → 0.14.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 +4 -4
- data/README.md +54 -16
- data/lib/meilisearch/rails/multi_search/result.rb +34 -11
- data/lib/meilisearch/rails/multi_search.rb +2 -0
- data/lib/meilisearch/rails/pagination/kaminari.rb +8 -5
- data/lib/meilisearch/rails/pagination/will_paginate.rb +6 -0
- data/lib/meilisearch/rails/version.rb +1 -1
- data/lib/meilisearch-rails.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: babcf0719c23af9294b52e76c7549cacf9baeb578221c18cf2be53db5bbeaaa1
|
4
|
+
data.tar.gz: 33aee866b13502a67657a5803d395fbcebe737456e2f45e812b1312074b5b7df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 230fc45c263f5aa10ff137eba952673eed221a33bae3ae1c5cb7cfe35adbdc50d9399feaeaf20c7766fd78bf0c29ed440de08880de8f5c2e9d7889bcf6d107c5
|
7
|
+
data.tar.gz: 18bbbc7a7fd9cb64bf1f2429234c10c56b1c3c88a044909a3b01f1e4ceb276449f61cc6ceb52148131c44b8d5dfbeeb09438953dff15ff9857b3d9e7864e2ccd
|
data/README.md
CHANGED
@@ -241,22 +241,7 @@ multi_search_results = MeiliSearch::Rails.multi_search(
|
|
241
241
|
)
|
242
242
|
```
|
243
243
|
|
244
|
-
|
245
|
-
|
246
|
-
```erb
|
247
|
-
<% multi_search_results.each do |record| %>
|
248
|
-
<p><%= record.title %></p>
|
249
|
-
<p><%= record.author %></p>
|
250
|
-
<% end %>
|
251
|
-
|
252
|
-
<p>Harry Potter and the Philosopher's Stone</p>
|
253
|
-
<p>J. K. Rowling</p>
|
254
|
-
<p>Harry Potter and the Chamber of Secrets</p>
|
255
|
-
<p>J. K. Rowling</p>
|
256
|
-
<p>Attack on Titan</p>
|
257
|
-
<p>Iseyama</p>
|
258
|
-
```
|
259
|
-
|
244
|
+
Use `#each_result` to loop through pairs of your provided keys and the results:
|
260
245
|
```erb
|
261
246
|
<% multi_search_results.each_result do |klass, results| %>
|
262
247
|
<p><%= klass.name.pluralize %></p>
|
@@ -280,6 +265,59 @@ You can iterate through the results with `.each` or `.each_result`:
|
|
280
265
|
</ul>
|
281
266
|
```
|
282
267
|
|
268
|
+
Records are loaded when the keys are models, or when `:class_name` option is passed:
|
269
|
+
|
270
|
+
```ruby
|
271
|
+
multi_search_results = MeiliSearch::Rails.multi_search(
|
272
|
+
'books' => { q: 'Harry', class_name: 'Book' },
|
273
|
+
'mangas' => { q: 'Attack', class_name: 'Manga' }
|
274
|
+
)
|
275
|
+
```
|
276
|
+
|
277
|
+
Otherwise, hashes are returned.
|
278
|
+
|
279
|
+
The index to search is inferred from the model if the key is a model, if the key is a string the key is assumed to be the index unless the `:index_uid` option is passed:
|
280
|
+
|
281
|
+
```ruby
|
282
|
+
multi_search_results = MeiliSearch::Rails.multi_search(
|
283
|
+
'western' => { q: 'Harry', class_name: 'Book', index_uid: 'books_production' },
|
284
|
+
'japanese' => { q: 'Attack', class_name: 'Manga', index_uid: 'mangas_production' }
|
285
|
+
)
|
286
|
+
```
|
287
|
+
|
288
|
+
### Multi search the same index <!-- omit in toc -->
|
289
|
+
|
290
|
+
You can search the same index multiple times by specifying `:index_uid`:
|
291
|
+
|
292
|
+
```ruby
|
293
|
+
query = 'hero'
|
294
|
+
multi_search_results = MeiliSearch::Rails.multi_search(
|
295
|
+
'Isekai Manga' => { q: query, class_name: 'Manga', filters: 'genre:isekai', index_uid: 'mangas_production' }
|
296
|
+
'Shounen Manga' => { q: query, class_name: 'Manga', filters: 'genre:shounen', index_uid: 'mangas_production' }
|
297
|
+
'Steampunk Manga' => { q: query, class_name: 'Manga', filters: 'genre:steampunk', index_uid: 'mangas_production' }
|
298
|
+
)
|
299
|
+
```
|
300
|
+
|
301
|
+
### Deprecated #each <!-- omit in toc -->
|
302
|
+
|
303
|
+
**DEPRECATED:** You used to be able to iterate through a flattened collection with `.each`:
|
304
|
+
|
305
|
+
```erb
|
306
|
+
<% multi_search_results.each do |record| %>
|
307
|
+
<p><%= record.title %></p>
|
308
|
+
<p><%= record.author %></p>
|
309
|
+
<% end %>
|
310
|
+
|
311
|
+
<p>Harry Potter and the Philosopher's Stone</p>
|
312
|
+
<p>J. K. Rowling</p>
|
313
|
+
<p>Harry Potter and the Chamber of Secrets</p>
|
314
|
+
<p>J. K. Rowling</p>
|
315
|
+
<p>Attack on Titan</p>
|
316
|
+
<p>Iseyama</p>
|
317
|
+
```
|
318
|
+
|
319
|
+
But this has been deprecated in favor of **federated search**.
|
320
|
+
|
283
321
|
See the [official multi search documentation](https://www.meilisearch.com/docs/reference/api/multi_search).
|
284
322
|
|
285
323
|
## 🪛 Options
|
@@ -7,34 +7,57 @@ module MeiliSearch
|
|
7
7
|
@results = {}
|
8
8
|
@metadata = {}
|
9
9
|
|
10
|
-
searches.zip(raw_results['results']).each do |(
|
11
|
-
|
10
|
+
searches.zip(raw_results['results']).each do |(target, search_options), result|
|
11
|
+
results_class = if search_options[:class_name]
|
12
|
+
search_options[:class_name].constantize
|
13
|
+
elsif target.instance_of?(Class)
|
14
|
+
target
|
15
|
+
end
|
12
16
|
|
13
|
-
@results[
|
14
|
-
when String, Symbol
|
15
|
-
result['hits']
|
16
|
-
else
|
17
|
-
load_results(index_target, result)
|
18
|
-
end
|
17
|
+
@results[target] = results_class ? load_results(results_class, result) : result['hits']
|
19
18
|
|
20
|
-
@metadata[
|
19
|
+
@metadata[target] = result.except('hits')
|
21
20
|
end
|
22
21
|
end
|
23
22
|
|
24
23
|
include Enumerable
|
25
24
|
|
26
25
|
def each_hit(&block)
|
27
|
-
|
26
|
+
MeiliSearch::Rails.logger.warn(
|
27
|
+
<<~DEPRECATION
|
28
|
+
[meilisearch-rails] Flattening multi search results is deprecated.
|
29
|
+
If you do not want the results to be grouped, please use federated search instead.
|
30
|
+
DEPRECATION
|
31
|
+
)
|
32
|
+
|
33
|
+
@results.each_value do |results|
|
28
34
|
results.each(&block)
|
29
35
|
end
|
30
36
|
end
|
31
|
-
|
37
|
+
|
38
|
+
def each(&block)
|
39
|
+
MeiliSearch::Rails.logger.info(
|
40
|
+
<<~INFO
|
41
|
+
[meilisearch-rails] #each on a multi search now iterates through grouped results.
|
42
|
+
If you do not want the results to be grouped, please use federated search instead.
|
43
|
+
To quickly go back to the old deprecated behavior, use `#each_hit`.
|
44
|
+
INFO
|
45
|
+
)
|
46
|
+
|
47
|
+
@results.each(&block)
|
48
|
+
end
|
32
49
|
|
33
50
|
def each_result(&block)
|
34
51
|
@results.each(&block)
|
35
52
|
end
|
36
53
|
|
37
54
|
def to_a
|
55
|
+
MeiliSearch::Rails.logger.warn(
|
56
|
+
<<~DEPRECATION
|
57
|
+
[meilisearch-rails] Flattening multi search results is deprecated.
|
58
|
+
If you do not want the results to be grouped, please use federated search instead.
|
59
|
+
DEPRECATION
|
60
|
+
)
|
38
61
|
@results.values.flatten(1)
|
39
62
|
end
|
40
63
|
alias to_ary to_a
|
@@ -5,6 +5,8 @@ module MeiliSearch
|
|
5
5
|
class << self
|
6
6
|
def multi_search(searches)
|
7
7
|
search_parameters = searches.map do |(index_target, options)|
|
8
|
+
index_target = options.delete(:index_uid) || index_target
|
9
|
+
|
8
10
|
paginate(options) if pagination_enabled?
|
9
11
|
normalize(options, index_target)
|
10
12
|
end
|
@@ -18,11 +18,14 @@ module MeiliSearch
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def self.create(results, total_hits, options = {})
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
21
|
+
unless MeiliSearch::Rails.active?
|
22
|
+
total_hits = 0
|
23
|
+
options[:page] = 1
|
24
|
+
options[:per_page] = 1
|
25
|
+
end
|
26
|
+
|
27
|
+
offset = (options[:page] - 1) * options[:per_page]
|
28
|
+
array = new results, limit: options[:per_page], offset: offset, total_count: total_hits
|
26
29
|
|
27
30
|
if array.empty? && !results.empty?
|
28
31
|
# since Kaminari 0.16.0, you need to pad the results with nil values so it matches the offset param
|
@@ -10,6 +10,12 @@ module MeiliSearch
|
|
10
10
|
module Pagination
|
11
11
|
class WillPaginate
|
12
12
|
def self.create(results, total_hits, options = {})
|
13
|
+
unless MeiliSearch::Rails.active?
|
14
|
+
total_hits = 0
|
15
|
+
options[:page] = 1
|
16
|
+
options[:per_page] = 1
|
17
|
+
end
|
18
|
+
|
13
19
|
::WillPaginate::Collection.create(options[:page], options[:per_page], total_hits) do |pager|
|
14
20
|
pager.replace results
|
15
21
|
end
|
data/lib/meilisearch-rails.rb
CHANGED
@@ -415,7 +415,7 @@ module MeiliSearch
|
|
415
415
|
raise ArgumentError, "Invalid `enqueue` option: #{options[:enqueue]}"
|
416
416
|
end
|
417
417
|
meilisearch_options[:enqueue] = proc do |record, remove|
|
418
|
-
proc.call(record, remove)
|
418
|
+
proc.call(record, remove) if ::MeiliSearch::Rails.active? && !ms_without_auto_index_scope
|
419
419
|
end
|
420
420
|
end
|
421
421
|
unless options[:auto_index] == false
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: meilisearch-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Meili
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: meilisearch
|