Skip to content

MapValue#equals too slow #165

Description

@xuwei-k

version 0.7.0-p2

importorg.msgpack.value._objectMain {
defmapValueEqualsTime(size: Int):Unit= {
valkeyValues:Array[Value] = (1 to size).flatMap{ key =>Seq(ValueFactory.newString(key.toString), ValueFactory.nilValue())
}.toArray
valmap1, map2=ValueFactory.newMap(keyValues)
println(size)
System.gc
valstart=System.nanoTime
map1 == map2
println((System.nanoTime - start) /1000000.0)
println
}
defmain(args: Array[String]) {
mapValueEqualsTime(10)
mapValueEqualsTime(100)
mapValueEqualsTime(1000)
mapValueEqualsTime(10000)
mapValueEqualsTime(100000)
}
}

result

10
1.634357
100
4.078424
1000
10.137222
10000
183.871329
100000
22959.867596

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions