Posts by Marco Reis • 96 points
4 posts
-
0
votes4
answers1189
viewsA: How does a search engine work?
The Crawler web is an essential part of the search engine in the case of web applications, of course. The https://nutch.apache.org/ is an example of scalable web Crawler, by the way, is a project…
-
1
votes2
answers187
viewsA: In which scenarios is Elasticsearch worth using?
We can add some use cases of Elastic and Solr, which are similar products. Both tools are text search (text search), i.e., they are suitable when user searches are based on free text fields such as…
-
4
votes2
answers3464
viewsA: Secure authentication via REST
An alternative is to validate through tokens. Thus, you can even limit the amount of calls from your service. Some Google and Bing services are limited to 5,000 calls per day, from there the user…
-
2
votes2
answers2110
viewsA: How to index and search for files in Lucene
The Lucene 4 API is different from version 3. Below is a complete example of indexing and searching with Lucene 4.7. package net.marcoreis.util; import java.io.File; import java.io.FilenameFilter;…