| bio | website | centraldesktop.com |
|---|---|---|
| location | California | |
| age | 35 | |
| visits | member for | 4 years, 4 months |
| seen | 7 mins 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.
|
May 7 |
answered | Can a empty java string be created from non-empty UTF-8 byte array? |
|
May 6 |
comment |
Large ResultSet on postgresql query Afraid I can't be of help then. I haven't had any issue with the pg JDBC driver and fetch size for multi-gigabyte analysis queries but I have no experience with the spring library. Just as a test, I'd try it without partitioning. How large to you expect the data set to grow to? At 400k rows per day I don't expect your current algorithm to last all that long. Without exactly knowing your use case I'd suggest you start looking at data warehousing techniques like star schemas and data dimensions. |
|
May 6 |
comment |
Best language tooling I disagree with dfa regarding PHP having good tooling but I certainly do make use of Netbeans and Ant for the PHP project I have the misfortune to work on. Great tools, but aren't as great as they are when working with Java. |
|
May 6 |
answered | Large ResultSet on postgresql query |
|
May 5 |
answered | A definitive list of IDE's for Ruby on Rails |
|
May 2 |
comment |
Too many TIME_WAIT connections You can still reuse your connection within the page by assigning your dbconnection to a global variable. Instead of recreating every time. You can also use something like httpd.apache.org/docs/2.2/mod/mod_dbd.html to do the pooling outside of the php process. |
|
May 2 |
comment |
Debugging PHP Oh, this was a good resource. brendangregg.com/DTrace/dtrace_oneliners.txt |
|
May 2 |
answered | Multi-Language Solr Search Index |
|
May 2 |
comment |
Debugging PHP nothing specific, I wasn't aware of that link, thanks. I've had some problems where tracing all filesystem calls from php were enough. Specifically looking for fopens and flocks. Turns out PHP doesn't like include_once/require_once declarations (it's not a use (perl)/import (java) replacement like I was treating it). Too many referenced files would cause a death by flock. |
|
May 2 |
comment |
Database auto-increment column Probably from the use of the term "auto-increment" it is MySQL |
|
May 2 |
answered | Debugging PHP |
|
Apr 30 |
awarded | Commentator |
|
Apr 30 |
comment |
How to manage process for single man project Jeff Sutherland is now saying 5 people +/- 2. |
|
Apr 30 |
comment |
Ruby or C# as First Web Development Language I hate to admit it but that last year or so I've been presiding over a large PHP application. I continue to be amazed that some people actually like this language. These days, I'm picking RoR as my personal preferred platform for small projects. Large things, Java hands down. |
|
Apr 30 |
comment |
ruby development environment I recommend ALL windows user to install Cygwin first thing after installing a machine. Gives you a great shell (bash) that everyone is familiar with and all the utilities you are used to. |
|
Apr 29 |
comment |
Why should I use Test Driven Development? Everytime I do the test first part of TDD I find that I do things faster. I just don't do that very often due to many many years of bad habits. It'll take me a while to cure myself of that I'm afraid. Net Net: It speeds up your development, increases the quality of your code and make refactors considerably safer. |
|
Apr 29 |
comment |
how to get users ip address in java A warning about X-Forwarded-For. Some implementations will actually add a list of IP Addresses that may be in the chain, so you might need to anticipate which one was the original address. <pre> X-Forwarded-For: client1, proxy1, proxy2 </pre> |
|
Apr 29 |
awarded | Editor |
|
Apr 29 |
revised |
How can I log in to YouTube using Perl? added some comments regarding the OP's clarifications. |
|
Apr 29 |
answered | How can I log in to YouTube using Perl? |