|
May 20, 2014, 01:19:51 PM Last edit: May 20, 2014, 07:44:28 PM by DeathAndTaxes |
|
If you mean how many txs (as opposed to # of outputs using sendmany) can bitcoind create, it is very low, something on the order of 1 tps. Keep in mind 1 tps is >80,00 tx per day, which is more than the entire network is processing today. That also assumes you are just using bitcoind to create and broadcast txs. If you are using a single node to query for incoming tx, confirmations, new blocks, etc then that is going to cut into your transaction rate.
You could use multiple bitcoind servers if needed but if your tx volume is that high you should reconsider your model. We use multiple bitcoinds but it is for redundancy and to detect network issues (isolation, double spend attempts, tx mutability, etc) instead of out of a need for higher throughput. At a minimum you should be queuing up outgoing payments and sending them as multi output txs by using sendmany, or using rawtransactions.
|