salebab / phpkafka

PHP extension for Apache Kafka
MIT License
17 stars 66 forks source link

why not fast but slow #4

Open xibiange opened 10 years ago

xibiange commented 10 years ago

echo time(); <?php $kafka = new Kafka("10.10.18.19:9092"); for($i = 0;$i<10;$i++){

echo $i."\n";
$kafka->produce("test", $i);

} echo "\n".time();

edenhill commented 10 years ago

To amortize the initial setup cost and provide meaningful performance figures you need to do two things: