2,801 reputation
1814
bio website centraldesktop.com
location California
age 35
visits member for 4 years, 4 months
seen 19 hours ago
stats profile views 241
Engineer and Scrum Master. Been involved in architecture and implementation of scalable web apps since the late 90's. Professionally involved in large scale applications using Perl, Java, PostgreSQL, MySQL and PHP. Most recently, I've taken a liking to Ruby. Love PGSQL, Java, and Ruby while loathing MySQL and PHP.

Sep
22
answered 100% pure Java database
Sep
1
revised Strange MySQL results
edited tags
Aug
25
comment How can I optimize a query that does an ORDER BY on a derived column in MySQL?
I don't know how often you are adding / pruning data but you might want to make a summary table and select from there (where you only have the results of the inner query). You can maintain with code or with insert / update triggers. That will cause all sorting to be done with an appropriate index (if you add one).
Aug
25
comment How can I optimize a query that does an ORDER BY on a derived column in MySQL?
As long as you have no WHERE condition it's going to do a full table scan. If you could put any sort of condition on the query at all it will help considerably. My query will only help speed up the sort ... not so much reduce the number of rows scanned.
Aug
25
answered How can I optimize a query that does an ORDER BY on a derived column in MySQL?
Aug
24
comment Use SCRUM when team members juggle different roles?
@Andy ... no doubt. It's just a question worth asking. (IT or Customer Support) and Engineering don't have a lot of skill overlap so it's odd to see the two (or three) grouped. I think when you do it's often a management decision that you should question ... by speaking up or voting with your feet and finding a better company to work for.
Aug
20
revised Use SCRUM when team members juggle different roles?
typo
Aug
20
answered Use SCRUM when team members juggle different roles?
Jul
22
answered File uploading issue on glassfish server
Jul
4
comment Scalable, Delayed PHP Processing
Sad this answer is getting mod'd down so much. There are ways of accomplishing this task in PHP yes, but it's just not that good at it. If you want to scale (without massive amounts infrastructure like the Facebook's of the world that are scaling with PHP) you just don't use PHP. Despite what the marketing literature says, PHP is not designed to scale in any way. Want to scale like Facebook, etc? Pass off your messages into a queue of some sort (ActiveMQ with its STOMP support is a good choice) or to a scala or erlang backend. Now back to my 4th of July drinking and BBQing...
Jun
24
answered JMS Priority set by a custom header
Jun
16
answered Shared Variable Among Ruby Processes
Jun
11
comment GIT vs. Perforce- Two VCS will enter… one will leave
re #6 (stash): p4 shelve, it's new.
Jun
2
answered Where is the -j (select job) option when using p4 submit?
Jun
2
answered Special Characters Restriction Rule in XSD
Jun
2
answered Displaying PowerPoint slides on a web page automatically
May
26
comment Replace string key of PHP array
and on another machine: $ php -v PHP 5.2.11 with Suhosin-Patch 0.9.7 (cli) (built: Dec 11 2009 16:30:44) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
May
26
comment Replace string key of PHP array
$ php -v PHP 5.3.1 (cli) (built: Feb 11 2010 02:32:22) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2009 Zend Technologies
May
26
answered Replace string key of PHP array
Apr
27
awarded  Enlightened