Eats up all memory
-
The plugin is requesting everything from the Posts table and storing the content in variables, with a few thousands articles it results in the usage of 1GB of memory in the admin pages of contact form 7.
Is there a way you can optimize the queries? (eg, if only Post IDs and Titles are needed, only request those).
library/class-admin.php
[…]
$args = array( 'numberposts' => -1); $posts = get_posts($args);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Eats up all memory’ is closed to new replies.