Make WordPress Core


Ignore:
Timestamp:
10/18/2022 06:14:01 PM (2 years ago)
Author:
davidbaumwald
Message:

Networks and Sites: Revert the use of the metadata API for *_network_options functions.

[54080] refactored the logic in get_network_option(), update_network_option() and delete_network_option() to use the metadata API. However, this change resulted in issues with large multisite installs that utilize memcached having network options > 1MB in size.

This change reverts [54080] and all related follow-up changes.

Reverts [54080], [54081], and [54082]. Partially reverts [54267] and [54402].

Props pavelschoffer, rebasaurus, johnbillion, spacedmonkey, desrosj, rinatkhaziev.
Fixes #56845.
See #37181.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-functions.php

    r54482 r54637  
    114114 */
    115115function get_blog_count( $network_id = null ) {
    116     return (int) get_network_option( $network_id, 'blog_count' );
     116    return get_network_option( $network_id, 'blog_count' );
    117117}
    118118
     
    25642564     * @param int $space_allowed Upload quota in megabytes for the current blog.
    25652565     */
    2566     return (int) apply_filters( 'get_space_allowed', $space_allowed );
     2566    return apply_filters( 'get_space_allowed', $space_allowed );
    25672567}
    25682568
Note: See TracChangeset for help on using the changeset viewer.