User Dave Cheney - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T04:43:03Zhttp://stackoverflow.com/feeds/user/6449http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161838/is-it-possible-to-unlisten-on-a-socket3Is it possible to unlisten on a socket ?Dave Cheney2008-10-02T11:36:59Z2009-07-09T03:42:56Z
<p>Is it possible to unlisten on a socket after you have called listen(fd, backlog)? </p>
<p>Edit: My mistake for not making myself clear. I'd like to be able to temporarily unlisten on the socket. Calling close() will leave the socket in the M2LS state and prevent me from reopening it (or worse, some nefarious program could bind to that socket)</p>
<p>Temporarily unlistening would be a way (maybe not the best way) to signal to an upstream load balancer that this app couldn't accept any more requests for the moment</p>
http://stackoverflow.com/questions/170600/unix-socket-implementation-for-java/170611#1706111Answer by Dave Cheney for UNIX socket implementation for Java?Dave Cheney2008-10-04T16:29:39Z2009-05-13T02:38:05Z<p>Check out the JNA library. It's a halfway house between pure Java and JNI native code</p>
<p><a href="https://jna.dev.java.net/" rel="nofollow">https://jna.dev.java.net/</a></p>
http://stackoverflow.com/questions/736499/strange-http-gzip-issue/819776#8197760Answer by Dave Cheney for Strange http gzip issueDave Cheney2009-05-04T11:50:04Z2009-05-04T11:50:04Z<p>wget doesn't request a compressed response. Try </p>
<pre><code>curl --compressed <URL>.
</code></pre>
<p>You could also try adding a -v to print the response headers, check that a sensible Content-Type is being returned.</p>
http://stackoverflow.com/questions/262443/can-i-make-iemobile-not-strip-the-from-the-url-of-a-redirect/819663#8196631Answer by Dave Cheney for Can I make IEMobile not strip the # from the URL of a redirect?Dave Cheney2009-05-04T11:03:47Z2009-05-04T11:03:47Z<p>Reading RFC2616 it specifies</p>
<blockquote>
<p>Location: absoluteURI</p>
</blockquote>
<p>where absolute URI is defined by <a href="http://www.ietf.org/rfc/rfc2396.txt" rel="nofollow">RFC2396</a></p>
<p>Tracing the definition of absoluteURI, the # character is not part of the URI definition, this is confirmed by section 4.1</p>
<blockquote>
<p>4.1. Fragment Identifier</p>
<p>When a URI reference is used to
perform a retrieval action on the<br />
identified resource, the optional
fragment identifier, separated from<br />
the URI by a crosshatch ("#")
character, consists of additional<br />
reference information to be
interpreted by the user agent after
the retrieval action has been
successfully completed. As such, it
is not part of a URI, but is often
used in conjunction with a URI.</p>
</blockquote>
<p>In short, the #fragment is <em>not</em> part of the URI, and is being stripped by the browser as not part of the Location: header. </p>
http://stackoverflow.com/questions/217849/404-sysvol-entries-in-webservers-logfiles/217893#2178930Answer by Dave Cheney for 404 SysVol entries in webserver's logfilesDave Cheney2008-10-20T09:32:46Z2008-10-20T09:32:46Z<p>Are these requests coming from external IPs ? They are probably trying to p0wn you</p>
http://stackoverflow.com/questions/200250/how-do-i-remove-a-cookie-that-ive-set-on-someones-computer/200271#2002711Answer by Dave Cheney for How do I remove a cookie that I've set on someone's computer?Dave Cheney2008-10-14T07:38:45Z2008-10-14T07:38:45Z<p>Return the header</p>
<pre>
Set-Cookie: token=opaque; Domain=.your.domain; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/
</pre>
<p>The Domain and Path must match the original attributes that the cookie was issued under.</p>
http://stackoverflow.com/questions/196830/what-is-the-easiest-best-most-correct-way-to-iterate-through-the-characters-of-a/196975#1969755Answer by Dave Cheney for What is the easiest/best/most correct way to iterate through the characters of a string in Java?Dave Cheney2008-10-13T08:06:23Z2008-10-13T14:22:50Z<p>Two options</p>
<pre><code>for(int i = 0, n = s.length() ; i < n ; i++) {
char c = s.charAt(i);
}
</code></pre>
<p>or</p>
<pre><code>for(char c : s.toCharArray()) {
// process c
}
</code></pre>
<p>The first is probably faster, then 2nd is probably more readable. </p>
http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-500/195573#1955730Answer by Dave Cheney for Why is Apache + Rails is spitting out two status headers for code 500?Dave Cheney2008-10-12T14:50:24Z2008-10-12T14:50:24Z<p>This is coming from rails itself.</p>
<p><a href="http://github.com/rails/rails/tree/master/actionpack/lib/action_controller/dispatcher.rb#L60" rel="nofollow">http://github.com/rails/rails/tree/master/actionpack/lib/action_controller/dispatcher.rb#L60</a></p>
<p>The dispatcher is return an error page with the status code of 200 (Success). </p>
http://stackoverflow.com/questions/195468/synchronizing-io-operation-in-java-on-a-string-method-argument/195533#1955332Answer by Dave Cheney for synchronizing io operation in java on a string method argument?Dave Cheney2008-10-12T14:13:12Z2008-10-12T14:20:02Z<p>There are a number of problems with this approach. </p>
<ol>
<li><p>Unless you've called String.intern then your from string is probably not the same from as the other one you are calling. Relying on the behaviour of the internal java string cache is not very robust.</p></li>
<li><p>you aren't properly disposing of your XMLDecoder in a finally block, any exception thrown during that call will leak the file description associated with that FileInputStream.</p></li>
<li><p>You don't need to wrap e in another Exception(e), you can just throw e as you have declared the enclosing method also throws Exception</p></li>
<li><p>Catching/Throwing exception is a code smell. Yes, it is a super class of IOException, and whatever XML decoding exception might be thrown, but its also a superclass of a bunch of other things you probably didn't want to catch, NullPointerException for instance.</p></li>
</ol>
<p>To answer your question, how can you serialize access to a shared file to ensure its not being used by more than one thread, is tricky. FileChannel.lock() doesn't work inside the JVM, they just lock the file from modification by other processes in the machine.</p>
<p>My approach would be to strip any locking out of this class and wrap it in something that is aware of the threading issues of your code.</p>
<p>I'd also not pass a String as the filename, but a File, which gives you the ability to use File.createTempFile(2) to create opaque filenames between the thing writing xml and the thing reading xml.</p>
<p>Finally, do you want to synchronise access to a shared file, or fail when you detect multiple access to the same file? </p>
http://stackoverflow.com/questions/189559/how-do-i-join-two-lists-in-java/189752#189752-1Answer by Dave Cheney for How do I join two lists in Java?Dave Cheney2008-10-10T00:51:43Z2008-10-10T00:51:43Z<p>You could do it with a static import and a helper class</p>
<p><em>nb</em> the generification of this class could probably be improved</p>
<pre>
public class Lists {
private Lists() { } // can't be instantiated
public static List join(List... lists) {
List result = new ArrayList();
for(List list : lists) {
result.addAll(list);
}
return results;
}
}
</pre>
<p>Then you can do things like</p>
<pre>
import static Lists.join;
List result = join(list1, list2, list3, list4);
</pre>
http://stackoverflow.com/questions/174093/toarraynew-myclass0-or-toarraynew-myclassmylist-size/174110#1741101Answer by Dave Cheney for .toArray(new MyClass[0]) or .toArray(new MyClass[myList.size()]) ?Dave Cheney2008-10-06T12:46:40Z2008-10-06T12:46:40Z<p>toArray checks that the array passed is of the right size (that is, large enough to fit the elements from your list) and if so, uses that. Consequently if the size of the array provided it smaller than required, a new array will be reflexively created.</p>
<p>In your case, an array of size zero, is immutable, so could safely be elevated to a static final variable, which might make your code a little cleaner, which avoids creating the array on each invocation. A new array will be created inside the method anyway, so it's a readability optimisation.</p>
<p>Arguably the faster version is to pass the array of a correct size, but unless you can <em>prove</em> this code is a performance bottleneck, prefer readability to runtime performance until proven otherwise.</p>
http://stackoverflow.com/questions/171099/sensible-http-post-timeout-values-to-use-when-programmatically-issuing-requests/171436#1714360Answer by Dave Cheney for Sensible HTTP POST timeout values to use when programmatically issuing requests?Dave Cheney2008-10-05T03:40:53Z2008-10-05T03:40:53Z<p>Most libraries have a connect timeout and a read timeout. That is, the timeout between trying to connect to the remote server, and the timeout after sending the request, that they should wait for a response.</p>
<p>If this is a local web service, I would set the connect timeout low, 1 second, or less if your library supports it. If the remote service you are connecting to is unavailable IMHO its better to return a response to the user immediately, than to allow all your worker threads to block on that remote service, causing other upstream errors.</p>
<p>As for the read timeout, that is trickier, you need it to be low, so you don't exhaust your pool of workers who are waiting for the remote service to return, but you also don't want it so low that it closes the connection before reading a response. That is something you'll have to test, then track as a metric when your system is in production.</p>
http://stackoverflow.com/questions/163367/error-updating-a-record/170619#1706191Answer by Dave Cheney for Error Updating a recordDave Cheney2008-10-04T16:36:46Z2008-10-04T16:36:46Z<p>When you say a text field, is it of type VARCHAR, or TEXT?</p>
<p>If its the former then you cannot store a string larger than 255 chars (possibly less with UTF-8 overhead) in that column. If its the latter, you'd better post your schema definition so people can assist you further.</p>
http://stackoverflow.com/questions/156941/capistrano-thin-nginx-with-user-not-allowed-to-sudo-howto/169914#1699140Answer by Dave Cheney for Capistrano + thin + nginx with user not allowed to sudo howto?Dave Cheney2008-10-04T07:22:39Z2008-10-04T07:22:39Z<p>An alternative to this would be running nginx as a normal user, say on port 8080 then using IPTables to redirect requests from port 80 to port 8080, from memory</p>
<pre>iptables -A PREROUTING -t tcp -m tcp -p 80 -j DNAT --dport 8080</pre>
<p>Will send all packets destined to port 80 to port 8080, which can be bound as a normal user.</p>
http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/169884#16988413Answer by Dave Cheney for Is it possible to query a tree structure table in MySQL in a single query, to any depth?Dave Cheney2008-10-04T06:55:15Z2008-10-04T06:55:15Z<p>Yes, this is possible, it's a called a Modified Preorder Tree Traversal, as best described here</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1558609202" rel="nofollow">Joe Celko's Trees and Hierarchies in SQL for Smarties</a></p>
<p>A working example (in PHP) is provided here</p>
<p><a href="http://www.sitepoint.com/article/hierarchical-data-database/2/" rel="nofollow">http://www.sitepoint.com/article/hierarchical-data-database/2/</a></p>
http://stackoverflow.com/questions/127684/disabling-client-cache-from-jetty-server-for-rest-requests/169678#1696782Answer by Dave Cheney for Disabling client cache from Jetty server for REST requestsDave Cheney2008-10-04T03:24:52Z2008-10-04T03:24:52Z<blockquote>
<p>response.setHeader("Pragma", "no-cache");</p>
</blockquote>
<p>No, No. No!</p>
<p>The use of the pragma header to disabling client side caching is wrong, it's a request header and has <em>zero</em> effect on the response.</p>
<p><a href="http://www.mnot.net/cache_docs/#PRAGMA" rel="nofollow">http://www.mnot.net/cache_docs/#PRAGMA</a></p>
<p><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.32" rel="nofollow">http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.32</a></p>
<p>Also, setting Expires: 0 isn't correct, Expires should be a date, not a number of seconds, however this <em>will</em> work as an invalid http date is interpreted as "already expired"</p>
<p><a href="http://www.mnot.net/cache_docs/#EXPIRES" rel="nofollow">http://www.mnot.net/cache_docs/#EXPIRES</a></p>
<p><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21" rel="nofollow">http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21</a></p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat/169670#1696702Answer by Dave Cheney for Bad Gateway 502 error with Apache mod_proxy and TomcatDave Cheney2008-10-04T03:17:01Z2008-10-04T03:17:01Z<p>I'm guessing your using mod_proxy_http (or proxy balancer).</p>
<p>Look in your tomcat logs (localhost.log, or catalina.log) I suspect your seeing an exception in your web stack bubbling up and closing the socket that the tomcat worker is connected to.</p>
http://stackoverflow.com/questions/152259/whats-the-best-way-to-search-a-mysql-database-with-php/160909#1609091Answer by Dave Cheney for What's the best way to search a MySQL database with PHP?Dave Cheney2008-10-02T04:45:24Z2008-10-02T04:45:24Z<p>Consider using <a href="http://www.sphinxsearch.com/" rel="nofollow">sphinx</a>. It's an open source full text engine that can consume your mysql database directly. It's far more scalable and flexible than hand coding LIKE statements (and far less susceptible to SQL injection)</p>
http://stackoverflow.com/questions/97220/any-http-proxies-with-explicit-configurable-support-for-request-response-bufferi/156647#1566470Answer by Dave Cheney for Any HTTP proxies with explicit, configurable support for request/response buffering and delayed connections?Dave Cheney2008-10-01T08:03:35Z2008-10-01T08:03:35Z<p>Nginx can do everything you want. The configuration parameters you are looking for are</p>
<p><a href="http://wiki.codemongers.com/NginxHttpCoreModule#client_body_buffer_size" rel="nofollow">http://wiki.codemongers.com/NginxHttpCoreModule#client_body_buffer_size</a></p>
<p>and</p>
<p><a href="http://wiki.codemongers.com/NginxHttpProxyModule#proxy_buffer_size" rel="nofollow">http://wiki.codemongers.com/NginxHttpProxyModule#proxy_buffer_size</a></p>
http://stackoverflow.com/questions/125957/nginx-setup-question/156642#1566425Answer by Dave Cheney for nginx setup questionDave Cheney2008-10-01T08:01:10Z2008-10-01T08:01:10Z<p>When you reload your nginx (kiil -HUP) you'll get something like this in your error logs</p>
<pre>
2008/10/01 03:57:26 [notice] 4563#0: signal 1 (SIGHUP) received, reconfiguring
2008/10/01 03:57:26 [notice] 4563#0: reconfiguring
2008/10/01 03:57:26 [notice] 4563#0: using the "epoll" event method
2008/10/01 03:57:26 [notice] 4563#0: start worker processes
2008/10/01 03:57:26 [notice] 4563#0: start worker process 3870
</pre>
<p>What event method is your nginx compiled to use?</p>
<p>Are you doing any access_log'ing ? Consider adding buffer=32k, which will reduce the contention on the write lock for the log file.</p>
<p>Consider reducing the number of workers, it sounds counter intuitive, but the workers need to synchronize with each other for sys calls like accept(). Try reducing the number of workers, ideally I would suggest 1.</p>
<p>You might try explicitly setting the read and write socket buffers on the listening socket, see <a href="http://wiki.codemongers.com/NginxHttpCoreModule#listen" rel="nofollow">http://wiki.codemongers.com/NginxHttpCoreModule#listen</a></p>
http://stackoverflow.com/questions/131754/when-creating-a-collection-via-webdav-should-the-name-of-the-collection-end-with1When creating a collection via WebDAV should the name of the collection end with a slashDave Cheney2008-09-25T06:46:39Z2008-09-25T08:24:31Z
<p>A WebDAV library I'm using is issuing this request</p>
<pre>
MKCOL /collection HTTP/1.1
</pre>
<p>To which apache is issuing a 301 because /collection exists </p>
<pre>
HTTP/1.1 301
Location: /collection/
</pre>
<p>Rather than a </p>
<pre>
HTTP/1.1 405 Method Not Allowed
</pre>
<p>The spec is a bit vague on this (or it could be my reading of it), but when issuing an MKCOL, should the name of your collection always end with a slash (as it is a collection) ?</p>
http://stackoverflow.com/questions/119006/what-should-i-do-with-the-vendor-directory-with-respect-to-subversion/120329#1203292Answer by Dave Cheney for What should I do with the vendor directory with respect to subversion?Dave Cheney2008-09-23T11:00:43Z2008-09-23T11:00:43Z<p>I'd have to advise against svn:externals for two reasons</p>
<ol>
<li><p>you might be deploying into an environment that cannot reach those svn services</p></li>
<li><p>what happens when you want to deploy and those svn external are down?</p></li>
</ol>
<p>My advice is to use piston or gem unpack and manage your production dependancies in your vendor tree.</p>
http://stackoverflow.com/questions/120314/rubyonrails-newbie-question-which-version-of-rails-should-i-start-with/120321#1203212Answer by Dave Cheney for RubyOnRails newbie question- Which version of rails should i start with?Dave Cheney2008-09-23T10:57:36Z2008-09-23T10:57:36Z<pre>sudo gem install rails</pre>
<p>Just go with whatever that installs (that is 2.0.x currently, 2.1 in a few months). RoR moves quickly and the best way to get support is to stay current. </p>
http://stackoverflow.com/questions/119349/rails-performance-analyzers/120298#1202982Answer by Dave Cheney for Rails performance analyzersDave Cheney2008-09-23T10:51:12Z2008-09-23T10:51:12Z<p>+1 for new relic. </p>
<p>Also consider five runs, I haven't played with it, but it appears to have a loopback mode for development mode, vs's new relics production mode</p>
http://stackoverflow.com/questions/113090/dynamic-ip-based-blacklisting/113107#1131072Answer by Dave Cheney for Dynamic IP-based blacklistingDave Cheney2008-09-22T03:59:15Z2008-09-22T03:59:15Z<p>Take a look at <a href="http://www.fail2ban.org/" rel="nofollow">fail2ban</a>. A python framework that allows you to raise IP tables blocks from tailing log files for patterns of errant behaviour.</p>
http://stackoverflow.com/questions/110930/interval-rails-caching/111047#1110471Answer by Dave Cheney for interval rails cachingDave Cheney2008-09-21T13:46:55Z2008-09-21T13:46:55Z<p>AFAIK rails page caching compares the cache time on request and regenerates if necessary. If you need to forcibly flush that cache check out Sweepers.
<a href="http://www.railsenvy.com/2007/2/28/rails-caching-tutorial#sweepers" rel="nofollow">http://www.railsenvy.com/2007/2/28/rails-caching-tutorial#sweepers</a></p>
http://stackoverflow.com/questions/102278/active-flag-or-not/111038#1110381Answer by Dave Cheney for `active' flag or not?Dave Cheney2008-09-21T13:41:01Z2008-09-21T13:41:01Z<p>Binary flags like this in your schema are a BAD idea. Consider the query </p>
<pre>SELECT count(*) FROM users WHERE active=1</pre>
<p>Looks simple enough. But what happens when you have a large number of users, so many that adding an index to this table would be required. Again, it looks straight forward</p>
<pre>ALTER TABLE users ADD INDEX index_users_on_active (active)</pre>
<p>EXCEPT!! This index is useless because the cardinality on this column is exactly two! Any database query optimiser will ignore this index because of it's low cardinality and do a table scan.</p>
<p>Before filling up your schema with helpful flags consider how you are going to access that data.</p>
<p><a href="http://stackoverflow.com/questions/108503/mysql-advisable-number-of-rows#108784">http://stackoverflow.com/questions/108503/mysql-advisable-number-of-rows</a></p>
http://stackoverflow.com/questions/109830/not-getting-emails-from-exceptionnotifier/109939#1099391Answer by Dave Cheney for Not getting emails from ExceptionNotifierDave Cheney2008-09-21T01:29:30Z2008-09-21T01:29:30Z<p>Check your production log, exceptions can be throw in side the exception_notifier plugin, which prevent it from sending mails</p>
http://stackoverflow.com/questions/101275/big-things-to-do-when-deploying-a-rails-app/101991#1019910Answer by Dave Cheney for Big things to do when deploying a rails appDave Cheney2008-09-19T13:53:48Z2008-09-19T13:53:48Z<h2>Choose a web server / load balancer</h2>
<p>My preferred server is nginx, but the common pattern is to start with apache + mod_proxy_http. </p>
http://stackoverflow.com/questions/101880/why-do-i-get-java-net-bindexception-only-one-usage-of-each-socket-address-if-n/101951#1019512Answer by Dave Cheney for Why do I get "java.net.BindException: Only one usage of each socket address" if netstat says something else?Dave Cheney2008-09-19T13:48:14Z2008-09-19T13:48:14Z<p>During your first invocation of your program, did it accept at least one incoming connection? If so then what you are most likely seeing is the socket linger in effect. </p>
<p>For the best explanation dig up a copy of TCP/IP Illustrated by Stevens </p>
<p><img src="http://www.kohala.com/start/gifs/tcpipiv1.gif" alt="alt text" /></p>
<p>But, as I understand it, because the application did not properly close the connection (that is BOTH client and server sent their FIN/ACK sequences) the socket you were listening on cannot be reused until the connection is considered dead, the so called 2MSL timeout. The value of 1 MSL can vary by operating system, but its usually a least a minute, and usually more like 5. </p>
<p>The best advice I have heard to avoid this condition (apart from always closing all sockets properly on exit) is to set the SO_LINGER tcp option to 0 on your server socket during the listen() phase. As freespace pointed out, in java this is the setReuseAddress(true) method.</p>
http://stackoverflow.com/questions/819103/how-can-i-set-a-timeout-around-some-code-in-java-on-the-main-threadComment by Dave Cheney on How can I set a timeout around some code in java on the main thread?Dave Cheney2009-05-04T11:19:40Z2009-05-04T11:19:40ZBe sure to read <a href="http://java.sun.com/j2se/1.4.2/docs/guide/misc/threadPrimitiveDeprecation.html" rel="nofollow">java.sun.com/j2se/1.4.2/…</a>http://stackoverflow.com/questions/56687/how-do-i-ensure-that-rmi-uses-only-a-specific-set-of-ports/56701#56701Comment by Dave Cheney on How do I ensure that RMI uses only a specific set of ports?Dave Cheney2008-11-16T23:36:10Z2008-11-16T23:36:10ZYes, but then you need the class available on the client as well as the server. I know this is do'able, but its pretty annoying. Is there any way to avoid this ?http://stackoverflow.com/questions/208261/how-do-i-get-tomcat-5-5-to-run-behind-apache-2-with-modrewrite-passing-through-rComment by Dave Cheney on How do I get tomcat 5.5 to run behind apache 2 with mod_rewrite passing through requests to mod_jk and stripping app context?Dave Cheney2008-10-16T12:10:18Z2008-10-16T12:10:18ZApache 2.0 or 2.2 ?http://stackoverflow.com/questions/197190/why-cant-i-use-a-type-argument-in-a-type-parameter-with-multiple-bounds/197301#197301Comment by Dave Cheney on Why can't I use a type argument in a type parameter with multiple bounds?Dave Cheney2008-10-13T11:50:44Z2008-10-13T11:50:44ZBecause I might be a class ? Just because A extends I doesn't mean that I is an interface (ok that would make A an interface), but A could easily be a subclass of I, which is forbidden by the spechttp://stackoverflow.com/questions/196830/what-is-the-easiest-best-most-correct-way-to-iterate-through-the-characters-of-a/196975#196975Comment by Dave Cheney on What is the easiest/best/most correct way to iterate through the characters of a string in Java?Dave Cheney2008-10-13T10:03:58Z2008-10-13T10:03:58Zyeah - whoa, what happened to my post, thats all messed uphttp://stackoverflow.com/questions/196830/what-is-the-easiest-best-most-correct-way-to-iterate-through-the-characters-of-a/196834#196834Comment by Dave Cheney on What is the easiest/best/most correct way to iterate through the characters of a string in Java?Dave Cheney2008-10-13T08:04:39Z2008-10-13T08:04:39Zit might inline length(), that is hoist the method behind that call up a few frames, but its more efficient to do this
for(int i = 0, n = s.length() ; i < n ; i++) {
char c = s.charAt(i);
}
http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-500/195573#195573Comment by Dave Cheney on Why is Apache + Rails is spitting out two status headers for code 500?Dave Cheney2008-10-13T00:06:22Z2008-10-13T00:06:22ZSee <a href="http://github.com/mongrel/mongrel/tree/master/lib/mongrel/rails.rb#L49" rel="nofollow">github.com/mongrel/mongrel/…</a>http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-500/195573#195573Comment by Dave Cheney on Why is Apache + Rails is spitting out two status headers for code 500?Dave Cheney2008-10-13T00:04:52Z2008-10-13T00:04:52ZYes, internally mongrel creates a CGI request and response object as that is what the rails dispatcher expects (fastCGI + lighttpd was the preferred deployment method about 2 years ago) but mongrel itself is a HTTP server so it just passes the Status: header up to apache rather than interpreting ithttp://stackoverflow.com/questions/190594/deploying-binary-gems-to-a-different-platform/195998#195998Comment by Dave Cheney on Deploying binary gems to a different platformDave Cheney2008-10-12T21:19:08Z2008-10-12T21:19:08ZJoyent appear to give you root access, so you can install any gem you want, assuming it can be compiled under Solaris <a href="http://wiki.joyent.com/all-accelerators:kb:rubygems" rel="nofollow">wiki.joyent.com/all-accelerators:kb:rubygems/…</a>
http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-500/195573#195573Comment by Dave Cheney on Why is Apache + Rails is spitting out two status headers for code 500?Dave Cheney2008-10-12T21:13:25Z2008-10-12T21:13:25ZBut the bridge between apache and mongrel is HTTP, not CGIhttp://stackoverflow.com/questions/195468/synchronizing-io-operation-in-java-on-a-string-method-argument/195533#195533Comment by Dave Cheney on synchronizing io operation in java on a string method argument?Dave Cheney2008-10-12T21:12:41Z2008-10-12T21:12:41ZCan you update your original question? 300 Chars is too short to explain what you want.http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-500/161689#161689Comment by Dave Cheney on Why is Apache + Rails is spitting out two status headers for code 500?Dave Cheney2008-10-12T21:09:42Z2008-10-12T21:09:42ZBut the bridge between apache and mongrel is HTTP, not CGI.http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-500/161689#161689Comment by Dave Cheney on Why is Apache + Rails is spitting out two status headers for code 500?Dave Cheney2008-10-12T14:45:38Z2008-10-12T14:45:38Z<a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14" rel="nofollow">w3.org/Protocols/rfc2616/…</a>
^ where is the Status: header defined ?http://stackoverflow.com/questions/190376/is-string-hashcode-portable-across-vms-jdks-and-oss/190470#190470Comment by Dave Cheney on Is String.hashCode() portable across VMs, JDKs and OSs?Dave Cheney2008-10-12T14:37:02Z2008-10-12T14:37:02ZPoint 3 is not true, the implementation of String.hashCode changed in java 1.2. <a href="http://books.google.com/books?id=ZZOiqZQIbRMC&pg=PA41&lpg=PA41&dq=string+hashcode+pathological+behaviour&source=web&ots=UZM_aodFaZ&sig=TWFCLMcBgy-l10kiWKll1ShfZ_o&hl=en&sa=X&oi=book_result&resnum=1&ct=result" rel="nofollow">books.google.com/books?id=ZZOiqZQIbRMC&pg=PA4…</a>http://stackoverflow.com/questions/190714/do-i-need-to-worry-about-the-string-constant-pool/190848#190848Comment by Dave Cheney on Do I need to worry about the String Constant Pool?Dave Cheney2008-10-12T14:32:45Z2008-10-12T14:32:45ZString small = new String(large.substring(...))