Alister Bulman

4,380
reputation
523 views

Registered User

name Alister Bulman
member for 1 year
seen 15 hours ago
website
location UK
age 40

Web geek, of PHP, scaling websites and software engineering.

Dec
6
awarded  Mortarboard
Dec
1
answered Master / Slave switch in the Zend Framework application layer
Dec
1
comment Queuing systems - what is a good way to start up multiple workers?
It's a solid method to start the workers. pear.php.net/package/System_Daemon may also be helpful in generating the init.d scripts.
Nov
27
comment Checking the status of my PHP beanstalkd background processes
If you want to make sure the worker keeps running I would tend to have the background process put a note into a cache (eg, memcached) as to results it produces and its own status. It could put an short-life message into memcached with a time it last ran for example. To make sure it keeps running, I wrap the worker in something like the bash script at topbit.co.uk/serendipity/archives/…
Nov
26
revised Checking the status of my PHP beanstalkd background processes
monit has it's 'protocol' checks written in C, not just a script.
Nov
26
answered Checking the status of my PHP beanstalkd background processes
Nov
23
answered Connecting thousands of clients to a Jabber server through a single connection
Nov
10
comment Apache and the c10k.
Good information, and I like thttpd a lot (I've used it a couple of times in the last 8 years). Important to note though, that the table of info you list is more than ten years old.
Nov
10
answered Fowler Null Object Pattern: Why use inheritance?
Nov
10
answered How important is spriting for performance on a high traffic website?
Nov
10
accepted Adding authentication to beanstalkd from Python (or any UNIX) client
Nov
9
answered Proper status code for a maintenance page redirect?
Nov
7
comment Which users are currently connected to an Openfire Jabber server?
That would be a lot of pages to scrape though. I'm hoping for some DB-access, or maybe connection to the server to retrieve a big list of currently logged in JIDs, maybe with the additional info as above.
Nov
7
answered Adding authentication to beanstalkd from Python (or any UNIX) client
Nov
6
revised Can we alias a function in php ?
added 40 characters in body
Nov
6
answered Can we alias a function in php ?
Nov
5
comment Transfer MySQL to SQLite
it's a slightly different dialect of SQL however, particularly in regard to table creation schemas.
Nov
5
answered Besides “treat warnings as errors” and fixing memory leaks, what other ideas should we implement as part of our coding standards?
Nov
5
comment How can I access the configuration of a Zend Framework application from a controller?
That will take a little work to re-parse the array into an object. If you prefer having the config as an array, it's just "Zend_Registry::set('config', $this->getOptions());" though you'll have to get it out into a variable before getting the value.
Nov
5
accepted Framework Comparison and Overhead
Nov
4
revised HTML Select only returning First Option
Figured out what he actually meant - which really wasn't clear. Still not duplicated it though.
Nov
4
comment HTML Select only returning First Option
The trailing / on the first "<select />" is XHTML to close the tag (useful mainly just for '<br/>' and '<hr/>') - therefore, there are no select options listed, just bad XHTML for it.
Nov
4
answered HTML Select only returning First Option
Nov
4
accepted Problems with APC on publish
Nov
4
answered Framework Comparison and Overhead
Nov
4
comment Framework Comparison and Overhead
"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." Donald Knuth.
Oct
28
answered How to make a Linux Service that Accepts Commands via Web Server?
Oct
25
answered why do include lines not end with a semicolon ?
Oct
24
accepted PHP asynchronous processing with beanstalkd. Do you recommend it?
Oct
23
answered PHP: Using APC as general cache, XCache as opcache, possible?
Oct
23
answered PHP asynchronous processing with beanstalkd. Do you recommend it?
Oct
23
revised PHP asynchronous processing with beanstalkd. Do you recommend it?
add tag
Oct
21
accepted PHPUnit testing for multiple exceptions
Oct
21
comment phpunit require_once() error
/usr/bin is where executables live, not libraries.
Oct
21
answered PHPUnit testing for multiple exceptions
Oct
21
comment PHP APC, educate me
it's really just a matter of setting how much space it will use, and dropping it into the server. For most significant websites, it's a no-brainer to want to have. I've seen a machine go from a a load-avg of 1.0+ to <0.3 when I installed it on a server, because there had been so much redundant compilation going on for every page-load.
Oct
21
comment PHP APC, educate me
How much psace it requires depends on how big your code is. For a good sized one, I'd start at 64MB. I tend to leave plenty of headroom as well 2.5-3x more than the code actually ends up taking, so I can put another version in beside it. For a busy site, apc.stat=0 is useful, but you can also clear the cache from a function call, rather than restarting Apache.
Oct
19
answered Android contacts extraction
Oct
19
accepted Limit execution time of an function or command PHP
Oct
18
answered How to retrieve the Zend_Config used by Zend_Application?
Oct
15
asked Trac - suggested permission levels for developers & managers
Oct
13
awarded  Popular Question
Oct
6
comment Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there?
there's also an official how-to page on PHP.net - php.net/mirroring.php
Oct
6
accepted How to convert Apache .htaccess files into Lighttpd rules?
Oct
1
accepted a web service monitoring tool
Sep
17
comment Security risk in storing SQL login info in PHP code?
... and so only if you give your money to a moronic webhosting company.
Sep
14
awarded  Yearling
Sep
7
answered How to integrate Zend Framework on my old PHP non centralized site?
Aug
25
accepted PHP: Best Method for Sequential Output?
Aug
6
awarded  Taxonomist