monitor resources usage

0

Hello all

Is it possible to monitor page generation time and mysql queries? It seems like standard WP functions like timer_stop() and get_num_queries() doesn't work with Pods, only WP core.

thanks in advance, K.

asked Sep 7 '10 at 8:30

yoch

1

add comment
enter at least 15 characters

1 Answer

0

Yes, those functions don't work with Pods because it doesn't use the database abstraction layer (the wpdb class) that the WP core uses. I'll add it to the list of feature requests for a future release. Pods does a very good job at running efficient queries and caching data, so I wouldn't worry too much about performance issues. If you want though, you can make your own timer using the PHP function microtime().

answered Sep 8 '10 at 11:58

clarinetlord

436

add comment
enter at least 15 characters