You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Jeff Varszegi <jv...@yahoo.com> on 2002/11/21 13:13:21 UTC

Re: Redirection of a POST method

You're right, it should.  The problem (as it seems to me, knowing nothing of the code) is that in
writeRequestLine() of HttpMethodBase it always calls getName(), which for a PostMethod() object
always returns "POST".  That can easily be changed, or the logic of execute() can be changed, I'm
sure.  My two cents' worth.  -Jeff Varszegi

--- bugzilla@apache.org wrote:
> DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
> RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
> <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14731>.
> ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
> INSERTED IN THE BUG DATABASE.
> 
> http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14731
> 
> Redirection of a POST method
> 
> mathis@vtg.at changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>          OS/Version|Other                       |All
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus � Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


[collections] Okay, so I made a SkipList...

Posted by Jeff Varszegi <jv...@yahoo.com>.
... a SkipListMap, actually, to be a new sort of SortedMap.  I spent lots of time doing everything
I know of to make it run super-fast except object caching, and it still runs about a quarter
slower than TreeMap.  Experimented with lots of different probability factors during the level
generation, but it didn't affect anything.  What a letdown-- I was really excited about the damn
thing.  Now I'd rather spend my time enhancing TreeMap if possible.

Guess you shouldn't believe everything you read.  SkipLists suck.  I saw some information on how
they can reduce the possibility of disk thrashing, which sounds cool, but as a general-purpose
sorting structure they really aren't the cat's pyjamas.  -Jeff

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus � Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>