| | 141 | * wp_cache_add_global_groups() - Adds a group or set of groups to the list of global groups |
|---|
| | 142 | * |
|---|
| | 143 | * @since 2.6 |
|---|
| | 144 | * |
|---|
| | 145 | * @param string|array $groups A group or an array of groups to add |
|---|
| | 146 | */ |
|---|
| | 147 | function wp_cache_add_global_groups( $groups ) { |
|---|
| | 148 | // Default cache doesn't persist so nothing to do here. |
|---|
| | 149 | return; |
|---|
| | 150 | } |
|---|
| | 151 | |
|---|
| | 152 | /** |
|---|
| | 153 | * wp_cache_add_non_persistent_groups() - Adds a group or set of groups to the list of non-persistent groups |
|---|
| | 154 | * |
|---|
| | 155 | * @since 2.6 |
|---|
| | 156 | * |
|---|
| | 157 | * @param string|array $groups A group or an array of groups to add |
|---|
| | 158 | */ |
|---|
| | 159 | function wp_cache_add_non_persistent_groups( $groups ) { |
|---|
| | 160 | // Default cache doesn't persist so nothing to do here. |
|---|
| | 161 | return; |
|---|
| | 162 | } |
|---|
| | 163 | |
|---|
| | 164 | /** |
|---|