1
I am trying to use bitcoins on my website. For this I use EasyBitcoin-PHP. It works good except that it is very slow. It takes about 5 seconds to load a simple script like this:
<?php
require_once 'easybitcoin.php';
$bitcoin = new Bitcoin('...', '...');
echo $bitcoin->getinfo();
?>
Is there a faster alternative than EasyBitcoin-PHP or is there a way to make it faster?
The problem was that bitcoind wasn't yet synchronized but your also of course will also help me. – Jan Wytze – 2016-01-13T16:46:28.743
Ah, I was going to mention that but thought against it :) I'll mention it in my answer, since it'll happen every time you start the node. – karimkorun – 2016-01-14T18:20:41.783