Jan Niestadt
                                            Jan Niestadt
                                        
                                    # BlackLab Server requests - [x] For example, it is not very clear that the `patt` parameter is in Corpus Query Language (unless you override that with `pattlang`, which in...
Right now, each match is returned with a fixed number of words as context (wordsaroundhit parameter). We would like to have an option to return matches with the whole sentence...
see https://inl.github.io/BlackLab/blacklab-server-overview.html#installation
BlackLab uses the XML library VTD-XML by default for processing documents while indexing. This only supports XPath 1.0. @eduarddrenth made it possible to use Saxon, a more feature-rich (supports XPath...
The Javadocs online are now only for the blackLab-engine module. Ideally the Javadocs for all the modules would be aggregated. See https://maven.apache.org/plugins/maven-javadoc-plugin/examples/aggregate.html
HitsFromQueryParallel may add documents in more or less random order because documents from different segments are added in parallel. This may lead to thrashing the disk cache if we're sorting/grouping...
Similar to changes in HitGroupsTokenFrequencies; it doesn't matter if we retrieve more than maxHitsToRetrieve as this is only a guideline.
We have a server where users can create a custom indexing configuration and update data to be indexed. This server is running an older version of BlackLab and some of...
Maybe the terms file could be memory-mapped? The format would probably need to change for this. If we integrate the forward index and content store with Solr, we will probably...
We currently use LeafReaders for concurrently gathering hits. They are divided over the available search threads more or less randomly. The problem is that each LeafReader searches a segment, which...