Jan Niestadt

Results 102 issues of 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...

good first issue
webservice

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...

enhancement
webservice
library

see https://inl.github.io/BlackLab/blacklab-server-overview.html#installation

webservice

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...

indexing

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

good first issue
documentation

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...

performance

Similar to changes in HitGroupsTokenFrequencies; it doesn't matter if we retrieve more than maxHitsToRetrieve as this is only a guideline.

performance

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...

enhancement
indexing

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...

performance
fixed-by-solr

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...

performance