parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

Ответ

G_Z 26.09.2004 14:25

И чем же это более ресурсоемко?
Тем, что выполняется количество выборок равное количеству строк выходной таблицы.
даже если он чуть медленнее, что совсем не так
Сравнил.
Сгенерил xml, вида:
<col_test>
	<item id="1" name="this is a name of the item number 1" datetime="2005-04-09 15:10:36" title="this is a title of the item number 1">
		<sub_item id="1" name="this is a name of the sub_item number 1" datetime="2005-01-04 14:10:36" title="this is a title of the sub_item number 1"/>
		...
		<sub_item id="10" name="this is a name of the sub_item number 10" datetime="2004-11-04 02:10:36" title="this is a title of the sub_item number 10"/>
	</item>
	...
	<item id="100" name="this is a name of the item number 100" datetime="2004-09-29 15:10:36" title="this is a title of the item number 100">
		<sub_item id="1" name="this is a name of the sub_item number 1" datetime="2005-05-04 15:10:36" title="this is a title of the sub_item number 1"/>
		...
		<sub_item id="10" name="this is a name of the sub_item number 10" datetime="2004-10-27 03:10:36" title="this is a title of the sub_item number 10"/>
	</item>
</col_test>
То бишь 100 item'ов, и 10 sub_item'ов в каждом.

Затем вывел его в html-таблицу, колонк две.
Результаты:
Мой метод:
Время:
скрипт — 0,09375 сек
Память:
занято — 3896 Кб

Ваш:
Время:
скрипт — 0,135417 сек

Память:
занято — 3856 Кб

Замерял три раза, результаты средние.