Archiv für den Monat June, 2010

Ein integrierter Anfrage-Cache für alle PHP MySQL Datenbankschnittstellen

Thursday, June 24th, 2010

Das erste öffentliche PHP mysqlnd-Plugin ist da ! Das "mysqlnd query result plugin" (PHP-Lizenz - Quellcode) erweitert die Funktionalität aller PHP MySQL Schnittstellen (ext/mysqli, ext/mysql, PDO_MySQL) um Anfragecaching. Das Plugin kann Anfrageergebnisse im Hauptspeicher, in Memcached, APC und in SQLite (mit Wrapper auch BerkeleyDB) ablegen. Damit integriert es sich in etablierte Open Source Standardlösungen.

Die […]

PHP: Client side caching for all MySQL extensions

Thursday, June 24th, 2010

The first public mysqlnd plugin adds client side query result caching to all MySQL extensions of PHP (ext/mysql, ext/mysqli, PDO_MySQL). The cache is written in C. It does not change any of the PHP MySQL APIs and works with any PHP application using MySQL. Query results are stored on the client. Cached data […]

PHP BBQs 2010 - Karlsruhe today, Frankfurt 27th

Tuesday, June 22nd, 2010

Pretty much exactly a year ago many german PHP meetups have held BBQs to celebrate the summer, to invite guests to join their meetups in a very relaxed atmosphere and to enjoy themselves. During the PHP BBQ week 2009 more than 140 people got connected and had fun . And, of course, I loved […]

PHP mysqlnd plugins - eine Alternative zum MySQL Proxy ?!

Thursday, June 3rd, 2010

MySQL Proxy ist eine einzigartige und herausragende Software, die mit wenig Aufwand Probleme lösen kann, welche ansonsten nur mit massiven Änderungen an bestehenden Anwendungen gelöst werden könnten. Wie jeder Proxy eröffnet MySQL Proxy eine neue Schicht zwischen der Anwendung und der MySQL Datenbank. Die neue Schicht is klar getrennt von allen bestehenden, kann […]

mysqlnd plugins: alternative to MySQL Proxy ?!

Wednesday, June 2nd, 2010

The mysqlnd plugin API is a well hidden gem of mysqlnd. Mysqlnd plugins operate on a layer between PHP applications and the MySQL server. This is comparable to MySQL Proxy. MySQL Proxy operates on a layer between any MySQL client application, for example, a PHP application and, the MySQL server. Plugins can take […]

mysqlnd plugin API, mysqlnd “Proxies” Vortrag

Wednesday, June 2nd, 2010

Seit einigen Monaten ist es möglich, mysqlnd plugins zu schreiben. Seit einigen Minuten gibt es die notwendigen Informationen dafür online für all diejenigen, die RSS-Feeds anstelle von Kommentardateien (*.c) lesen.

mysqlnd plugins sind eine Art Proxy, eine Art Erweiterung , die auf einem neuen Layer zwischen der PHP-Anwendung und der MySQL-Datenbank arbeiten. Sie können transparent agieren […]