Hi Claes,
> this seems like a very reasonable improvement. I can help sponsor it.
Thanks a lot!
> What I think is really needed in this area is some microbenchmarks that sets
> up
> multiple and more complex (but somewhat realistic) Layers of modules and test
> various
> queries, so that we ca
On 07/12/2017 10:00, Andrej Golovnin wrote:
Hi all,
when we try to find a module which is not in the current layer, then
we access the map 'nameToModule' in the parent layers two times in the
lines 849-850:
The change looks okay (I'm pretty sure it was just an oversight as this
code changed se
Hi Andrej,
this seems like a very reasonable improvement. I can help sponsor it.
What I think is really needed in this area is some microbenchmarks that
sets up
multiple and more complex (but somewhat realistic) Layers of modules and
test various
queries, so that we can profile and get a tab o
Hi all,
when we try to find a module which is not in the current layer, then
we access the map 'nameToModule' in the parent layers two times in the
lines 849-850:
846return layers()
847 .skip(1) // skip this layer
848 .map(l -> l.nameToModule)
849