I am trying to scan all the bitcoin data on my workstation with java to get some high level statistic data.
I parsed all the transactions with bitcoinJ, but I encountered a problem, the Transaction input only has transaction hash and index, which means I need to maintain all the unspent uxtos.
This task seems challenge to me, I have tested the SQLite and memory, Both solution can not work properly, SQLite is too slow, memory can not hold the huge data set at all.
Is there any one has some experience on this topic.