-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lookup for vocab terms without hashmap in RDF reader #99
Lookup for vocab terms without hashmap in RDF reader #99
Conversation
If I have understood the code correctly, the lookup from It's nice that the code is cleaner, but I would worry that this would impact on performance. |
That is right. Overall, I think that cleaning up the code is an important first step, and that changes can be done in |
716b995
to
63bb9a8
Compare
4401268
to
65f0c6a
Compare
This looks good now? It is ready for merge? |
Yes, it is. I will merge now. |
Leverages the
vocab::Vocab
enum to avoid building and passing around aHashmap
when deserializing named nodes inrdf::reader
.