solr schema for article->paragraph structure -


I want to list some articles and show paragraph numbers in search results. So I think the SLR schema should look like this:

article_id, paragraph_number, paragraph_content

Therefore, I need the article to first remove the paragraphs and one by one .

I am concerned about this demonstration because one article can contain 100 paragraphs.

Any suggestions?

It is better to get heavy loads on index time instead of searching time instead of parsing paragraphs of documents You probably go on the right track index.

How many articles do you have? There should be no problem bringing the paragraph in the strip (we pre-process more complex than this).


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -