I think one of the best code search tools I've seen is the one here: https://source.chromium.org/chromium I guess that's what Google uses internally? Is there an open source alternative?
Lmgrep: Lucene-based grep-like utility
11–20 of 27 posts
Re: Lmgrep: Lucene-based grep-like utility
#12I’ve been looking for something exactly like this. I keep the complete text of articles I’ve enjoyed but, to-date, effective searching has meant spinning up an ES instance, which is painful. This is a specific use case that isn’t necessarily well-served by something like grep or ripgrep. I’ll definitely try this, thanks - looks very elegant.
Is it automated in some way during web browsing, remembering to copy to a folder when you enjoyed it enough, or do you use a reading app/e-reader to read them so they're already downloaded
Re: Lmgrep: Lucene-based grep-like utility
#13I think one of the best code search tools I've seen is the one here: https://source.chromium.org/chromium I guess that's what Google uses internally? Is there an open source alternative?
https://github.com/mozilla/dxr
There is also Sourcegraph.
Re: Lmgrep: Lucene-based grep-like utility
#14I think one of the best code search tools I've seen is the one here: https://source.chromium.org/chromium I guess that's what Google uses internally? Is there an open source alternative?
There is DXR from Mozilla but I'm not sure how generalised it is. https://github.com/mozilla/dxr There is also Sourcegraph.
Re: Lmgrep: Lucene-based grep-like utility
#15I’ve been looking for something exactly like this. I keep the complete text of articles I’ve enjoyed but, to-date, effective searching has meant spinning up an ES instance, which is painful. This is a specific use case that isn’t necessarily well-served by something like grep or ripgrep. I’ll definitely try this, thanks - looks very elegant.
Re: Lmgrep: Lucene-based grep-like utility
#16I’ve been looking for something exactly like this. I keep the complete text of articles I’ve enjoyed but, to-date, effective searching has meant spinning up an ES instance, which is painful. This is a specific use case that isn’t necessarily well-served by something like grep or ripgrep. I’ll definitely try this, thanks - looks very elegant.
Have you considered using Docfetcher or Recoll?
Re: Lmgrep: Lucene-based grep-like utility
#17I’ve been looking for something exactly like this. I keep the complete text of articles I’ve enjoyed but, to-date, effective searching has meant spinning up an ES instance, which is painful. This is a specific use case that isn’t necessarily well-served by something like grep or ripgrep. I’ll definitely try this, thanks - looks very elegant.
Re: Lmgrep: Lucene-based grep-like utility
#18I'm surprised/impressed that it can build an index and search it in 29 milliseconds. Pretty clever solution!
Re: Lmgrep: Lucene-based grep-like utility
#19Very nice, examples are in the repository https://github.com/dainiusjocas/lucene-grep#text-analysis
Re: Lmgrep: Lucene-based grep-like utility
#20I see they have enabled Snowball stemmers. I wonder if using other Lucene analyzers such as Voikko for Finnish is feasible. Snowball wasn’t particularly good when text get complex. I used to deal with Lucene and Solr way back when. Based on the OP I see Graal requires change.