Szymon Matejczyk

Results 44 comments of Szymon Matejczyk

The problem is "com.github.spullara.mustache.java" % "compiler" % mustacheVersion dependency of twitter-server that needs guava 13.0.1. And twitter-utils depends on com.google.code.findbugs:jsr305:1.3.9 that is also old. @travisbrown @caniszczyk Can you do anything...

IIUC, after fix getNodeById will return Node but the node is going to be instantiated on the fly with no edges, right? Thit is something different than returning None, when...

I don't think making types of nodes and edges very general is a good direction. I've used scala-graph.org and it becomes slow for 20K nodes and is hard to learn...

Please focus on #89 first - this our priority and last step to Scala 2.11.

I think, I don't fully understand this issue. If we want to store a part of a larger graph that uses Long ids, why not to use NodeRenumbere[Long Int] and...

I assume that a graph will be still an array of Node (+ some additional info like nodeCount...). We want to store all nodes with ids of type Long in...

What about space consumptions and overhead problems when we use HashTable? They are not specialized. Using Renumberer does not solve that problem, as we use HashTable in it.

The priority of this change is to allow generic ids with Int, Long specialization while maintaining as much of the current performance as possible. While it is relatively easy to...