[0] You could create one for yourself, if it is just for the purpose to testing performance.
[1] This is how you can do with php script, using XMLWriter for performance.
[tt]
<?php
[green]//your specs
$sfile="large.xml"; //the file name
$nnodecreation=1000; //1000000; number of article node to be created
$nflushsize=1000; //some large but not too large number trade-off io-efficiency and memory footprint[/green]
$xw=new XMLWriter();
$xw->openMemory();
$xw->setIndent(true); //use default: one (1) space only
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.