You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for batch queries to optimize database performance when fetching multiple fields. Currently, each carbon_get_post_meta() call results in a separate database query, which is not ideal when you want to get a bunch of fields, store them in an array then display them into a page.
Expected functionality:
Ability to batch multiple field requests into a single query
Currently, each field fetch requires a separate database call, which, on a very large website with a lot of fields, increase drastically I/O calls for no real reasons.
Version
Expected Behavior
Add support for batch queries to optimize database performance when fetching multiple fields. Currently, each
carbon_get_post_meta()
call results in a separate database query, which is not ideal when you want to get a bunch of fields, store them in an array then display them into a page.Expected functionality:
Expected API :
Actual Behavior
Currently, each field fetch requires a separate database call, which, on a very large website with a lot of fields, increase drastically I/O calls for no real reasons.
The text was updated successfully, but these errors were encountered: