Radim Kolar
Radim Kolar
**Describe the bug** When seeking backward more cache is reloaded then it needs to be. Probably related to LRU caching method which is not optimal for dealing with streams. **Test...
Server mode has been _always_ problematic, it crashes when you modify a file. In this case I modified a plain content page. I haven't seen this one yet. It doesn't...
99.1 Hugo server windows build always crashes when I edit theme partial template. _hugo server --noHTTPCache --disableFastRender --ignoreCache --buildDrafts_ > panic: runtime error: invalid memory address or nil pointer dereference...
other MessageCodec object methods has typetag annotation I needed this change: https://gitlab.com/hsn10/akka-http-msgpack/-/commit/fb4edc72db5289c28bdc1a528ebc90484b3a1347 to make msgpack serializer for Akka to work. If it had typetag on .of method, i expect that...
Make ISO download so it can be tested within the virtual box easily. I do not see nameserver (primary/secondary) functionality listed so I cant replace my netbsd router with this....
Because most times you need to split CAR file into smaller parts (100MB) to get around upload limit, some way of signalling if all chunks from root CID got uploaded...
When compiling to scavro support classes java.time is used as type for _timestamp-millis_. Scavro depends on code generated by avro schema to java compiler as well, but this compiller is...
I need support for _logical type_ **duration**. ``` "fields": [ {"name":"start","type" : {"type":"long", "logicalType":"timestamp-millis"}}, {"name":"duration","type" : {"type":"fixed","size":12, "logicalType":"duration","name":"duration"}}, ``` I see ticked that _fixed type_ is not yet implemented. Can...
**Is your feature request related to a problem? Please describe.** Files are often not found in DHT if you have _larger_ node size because it takes too much time to...
I would like to have support for calling stored procedures with in/out parameters. Example of Java JDBC code: ``` con = getDataSource().getConnection(); CallableStatement callable = con.prepareCall("CALL SYSPROC.ADMIN_DROP_SCHEMA(?, ?, ?, ?)");...