PSeitz

Results 106 comments of PSeitz

All calls return promises, not the actual result, it should be probably something like this. ``` yamaha.getShortAlbumArtURL().then(function(url) { var FullAlbumArtURL = 'http://' + yamaha.ip + url; console.log(FullAlbumArtURL); }) ```

promises are async, it's not possbile to get the result in a sync manner, you have to use ```then()``` like this ``` GetImageUri().then(function(uri) { // the result returns }) ```

Thanks for the bug report, I created a similar issue here: https://github.com/quickwit-oss/quickwit/issues/1442 The approach to keep the connection alive may cause issues on some infrastructure, which is configured with a...

I didn't do benchmarks with kafka, but with ingestion from local fs. So take the following with a grain of salt, in case the main bottleneck is coming from the...

Let's split this into subtasks: - [x] Load test-data - [x] Create indexes via CLI - https://github.com/PSeitz/qw_build_index - [x] Ingest via CLI - [ ] Store and retrieve datasets from...

Related Issue https://github.com/quickwit-oss/quickwit/issues/1413

If the reason to delete is cost, we could consider to skip the merge part and only delete whole splits outside the period.

Related to https://github.com/quickwit-oss/quickwit/issues/794

@sirupsen Only the 4x bitpacker is used: https://github.com/quickwit-oss/tantivy/search?q=BitPacker4x

The navigate_to_definition method lists all the definitions in the popover. The same functionality for the declaration would be great, since it is not always clear, where the method etc. is...