apcu_entry

(PECL apcu >= 5.1.0)

apcu_entry Atomically fetch or generate a cache entry

Beschreibung

apcu_entry(string $key, callable $generator, int $ttl = 0): mixed

Atomically attempts to find key in the cache, if it cannot be found generator is called, passing key as the only argument. The return value of the call is then cached with the optionally specified ttl, and returned.

Hinweis: When control enters apcu_entry() the lock for the cache is acquired exclusively, it is released when control leaves apcu_entry(): In effect, this turns the body of generator into a critical section, disallowing two processes from executing the same code paths concurrently. In addition, it prohibits the concurrent execution of any other APCu functions, since they will acquire the same lock.

Warnung

The only APCu function that can be called safely by generator is apcu_entry().

Parameter-Liste

key

Identity of cache entry

generator

A callable that accepts key as the only argument and returns the value to cache.

ttl

Time To Live; store var in the cache for ttl seconds. After the ttl has passed, the stored variable will be expunged from the cache (on the next request). If no ttl is supplied (or if the ttl is 0), the value will persist until it is removed from the cache manually, or otherwise fails to exist in the cache (clear, restart, etc.).

Rückgabewerte

Returns the cached value

Beispiele

Beispiel #1 An apcu_entry() example

<?php
$config 
apcu_entry("config", function($key) {
 return [
   
"fruit" => apcu_entry("config.fruit", function($key){
     return [
       
"apples",
       
"pears"
     
];
   }), 
   
"people" => apcu_entry("config.people", function($key){
     return [
      
"bob",
      
"joe",
      
"niki"
     
];
   })
 ];
});

var_dump($config);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

array(2) {
  ["fruit"]=>
  array(2) {
    [0]=>
    string(6) "apples"
    [1]=>
    string(5) "pears"
  }
  ["people"]=>
  array(3) {
    [0]=>
    string(3) "bob"
    [1]=>
    string(3) "joe"
    [2]=>
    string(4) "niki"
  }
}

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Grundlagen von Views in MySQL

Views in einer MySQL-Datenbank bieten die Möglichkeit, eine virtuelle Tabelle basierend auf dem Ergebnis einer SQL-Abfrage zu erstellen. ...

admin

Autor : admin
Kategorie: mySQL-Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

[Einzelauftrag] Kommentarfunktion

Ich musste meine Bachelorarbeit neben dem Job schreiben und hatte kaum Zeit, mich voll darauf zu konzentrieren. Da entschied ich mich, Hilfe zu su ...

Geschrieben von Gorio am 10.11.2024 20:00:45
Forum: Jobgesuche
Offline für ca. 1 Stunde

Hallo! Wenn Sie Ihre Diplomarbeit schnell fertigstellen müssen, dann kann ich Ihnen diesen Service empfehlen - https://ghostwriter-österreich.at ...

Geschrieben von kukras am 10.11.2024 13:42:08
Forum: Ankündigungen
Eingabe in einer Datenbank

Immer wieder wichtig: Richtig debuggen Man bemerkt, dass ein Skript nicht das tut, was es soll. Man schreibt an den Anfang des Scriptes die Ze ...

Geschrieben von scatello am 08.11.2024 16:34:23
Forum: SQL / Datenbanken
Spam-Bots aussperren - Mailfeld Namen ändern, Honeypot, Timer

Ich glaube kaum, dass sich hier irgendwelche Leute mit den PHP-Codes von OS-Commerce Shopsystem auskennen. Außerdem ist HTTP_POST_VARS veraltet. ...

Geschrieben von scatello am 08.11.2024 16:20:15
Forum: PHP Developer Forum