Arne

Results 6 issues of Arne

# update on 2022.06.09 -> implementation almost ready, JMH benchmark results ## trading RAM for speed Starting from a variant with very low memory requirements, I decided to trade some...

### Version 5.0.0-SNAPSHOT ### Feature The current THRIFT format is great, but in practice there are many duplicate strings that unnecessarily bloat the serialised data. Idea: Extend the format with...

enhancement

### Version 5.0.0-SNAPSHOT ### Feature I've noticed that the requirement to clone a graph arises frequently in our codebase. Currently, this is our approach: ``` var copy = GraphFactory.createGraphMem(); graph.find().forEachRemaining(copy::add);...

enhancement

I propose to add support for SHACL validation: - In addition to SPARQL, SHACL could be added as a second language in the code blocks - SHACL should use the...

Fix for: `https://github.com/FasterXML/aalto-xml/issues/97` - alto.in.NsBinding#createDefaultNs now uses XMLConstants.DEFAULT_NS_PREFIX as prefix. - added tests with expected behaviour after fix - com.fasterxml.aalto.in.NsBindingTest - com.fasterxml.aalto.in.FixedNsContextTest

Version: 1.3.3 com.fasterxml.aalto.in.NsBinding#createDefaultNs creates an NsBinding where the prefix is `null` where it should be `XMLConstants.DEFAULT_NS_PREFIX`. This is particularly problematic in conjunction with com.fasterxml.aalto.in.FixedNsContext#getNamespaceURI, which does not allow the prefix...