Function __global->_get_cache_entries

Definitions

sources/caches.php

  • Ability to do multiple get_cache_entry at once, for performance reasons.This will use persistent cache if enabled, else the database.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$dets array No No required parameter N/A N/A An array of tuples of parameters (as per get_cache_entry, almost)

Returns

  • Array of results
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Ability to do multiple get_cache_entry at once, for performance reasons.This will use persistent cache if enabled, else the database.
 *
 * @param  array $dets An array of tuples of parameters (as per get_cache_entry, almost)
 * @return array Array of results
 */

function _get_cache_entries(array $dets) : array