Streaming parsers #1560
gromgull
started this conversation in
TO-DO list
Replies: 2 comments
-
The same would be useful for serializers. This would one allow to easily impelement convertors between different serializations. Of course, this would not easily work for serializers that want to have the triples in a certain order. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently all parsers write into a graph. For cases where you want to stream-process RDF, it would be nice if triples could be handled as they come in.
Two fold:
1 Most of our parsers have a Triple Sink object:
Define this interface centrally and unify
2 Make sure we read the input stream as a stream, and do not read the whole thing into a string :)
Beta Was this translation helpful? Give feedback.
All reactions