Author ArchiveIf you ever worked with threads and particular work queues you know how convenient they can be. Consider the following scenario. Actions and inputs from a web page triggers something that might take a (very) long time to execute and if executed during the browser session which besides annoying the user who has to wait for a page to load, might cause a time out and interrupt the processing. How do we solve this?
The preference system consists of multiple stores or trunks, each store is identified by a unique, arbitrary string and each store has multiple key-value pairs. The key-value pairs are dynamically created and flushed to database when the preference object is destroyed or when an explicit flush is requested. This is an extensible object oriented wrapper around the MySQL and MSSQL (Microsoft SQL Server) interfaces provided by PHP. I’ve been using them for a while, it’s nothing new and no rocket science but others might find them useful. Having a consistent interface will obviously help if you are using multiple types of database servers or someday would like to migrate to another SQL server (of course, weird and vendor specific SQL code could be a problem in this case). Other advantages are things like automatic disconnection on object destruction etc. The foundation is an abstract class called SQLConnector and provides the basic interface. The class will connect to the database on creation and disconnect when the object is destroyed, it also implements __sleep and __wakeup so that it’s possible to serialize a SQL connection. Because SQLConnector is abstract one can’t create objects directly from it, we’ll create child classes for each type of SQL-server we want to connect to. These objects will share the same interface and can be used interchangeably.
Jun
06
2008
Book review: Network Administration with FreeBSD 7Posted by fli in General, tags: book review, FreeBSD, network administration
This book is divided into three sections, system configuration, network configuration and network services and together they cover a lot of ground. Chapter 1 through 4 deals with basic system configuration ranging from partition layout, swap configuration, quotas, software RAID (GEOM framwork) to maintaining and keeping a system updated and secure, not only the FreeBSD system itself but also third party applications. |

Entries (RSS)