हल: django-elasticsearch-dsl में सभी दस्तावेज़ों की सूची प्राप्त करें

मुख्य समस्या यह है कि एलिस्टिक्स खोज के पास किसी दिए गए सूचकांक में सभी दस्तावेजों की सूची प्राप्त करने का मूल तरीका नहीं है। आप खोज API का उपयोग कर सकते हैं, लेकिन यह एक बार में केवल एक ही दस्तावेज़ लौटाएगा।

मैं django-elasticsearch-dsl का उपयोग कर रहा हूं और मैं इंडेक्स में सभी दस्तावेज़ों की सूची प्राप्त करना चाहता हूं। मैं वह कैसे कर सकता हूं?

A:

आप का उपयोग कर सकते हैं Search से वस्तु django_elasticsearch_dsl. का एक उपवर्ग है ElasticsearchDSL सर्च ऑब्जेक्ट, ताकि आप वहां से भी सभी तरीकों का उपयोग कर सकें। उसके लिए डॉक्स यहां हैं: https://elasticsearch-dsl.readthedocs.io/en/latest/search_dsl.html#the-search-object

सभी दस्तावेज प्राप्त करना

<code>from django_elasticsearch_dsl import Search, Index

s = Search(index='blog')
.query('match', title='python')

response = s.execute()

for hit in response: # iterate over hits from response object
print(hit) # print each hit as a dict (default)

for hit in s: # iterate over hits from search query directly
print(hit) # print each hit as a dict (default)

for hit in s[0:10]: # slice results to get only first 10 hits
print(hit) # print each hit as a dict (default)

len(s) # number of total hits found by query (slow!) &lt;--- this is what you want! &lt;--- this is what you want! &lt;--- this is what you want! &lt;--- this is what you want! &lt;--- this is what you want! len(response) # number of total hits found by query (slow!) &lt;--- this is what you want! &lt;--- this is what you want! &lt;--- this is what you want! &lt;--- this is what you want! list(s)[0] # first result as a Python dictionary list(response)[0] # first result as a Python dictionary response[0] # first result as an ElasticSearch Hit response[0].meta # metadata associated with the Hit response[0].meta.score # score associated with the Hit response[0].title # title field value list(response)[1]['title'] ## second result's 'title' field value<;/pre>;<;br />;>;br />;The above code will return all documents matching your query, but it will not return any fields other than _id and _type unless they are explicitly requested via source(). To retrieve more fields, use source():<;br />;from django_elasticsearch_dsl import Search, Index, F ;from elasticsearch_dsl import Q ;import json ;import pprint ;pp = pprint.PrettyPrinter();pprint = pp.pprint ;s = Search().query('match', title='python').source([ 'title', 'body' ]) ;for i in range((len(s))): pprint((json.loads((str)(s[i]).replace("'", """)))) ;## or simply do it like below :## [{'body': 'Python and Django go together like peanut butter and jelly.'

Related posts:

Leave a Comment