monitor resources usage
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.
1 Answer
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().
