I Use This!
High Activity

Commits : Listings

Analyzed 2 days ago. based on code collected 3 days ago.
May 12, 2023 — May 12, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
While this change made my linux box go faster, I could constantly crash my windows VM, so it will have to wait More... almost 18 years ago
Take advantage of Java 5 concurrent classes More... almost 18 years ago
Optimize timeout handling, thanks to a suggestion from [email protected], although this does put a gap in the timeout check, even in those cases where there shouldn't be, ie, a socket can be closed immediately More... almost 18 years ago
Set a per connection timeout More... almost 18 years ago
Add optional comet timeout support More... almost 18 years ago
- Comment out storeconfig for now. - Port patch. - Add logging.properties. More... almost 18 years ago
- Add the set of scripts. More... almost 18 years ago
- Add the set of scripts. More... almost 18 years ago
Delete unused classes deprecated in TC5. More... almost 18 years ago
Port CGI parameter and POST fixes from TC5 More... almost 18 years ago
The NIO connector uses only one poller, so the poller doesn't need to be comet or non comet. Instead the comet status is kept with the key/socket for future reference. This can enable us to end the comet request on the server side in the future, yet maintain the keep alive. More... almost 18 years ago
- Fix src packaging. More... almost 18 years ago
- More release scripts work. - Note: webapps are not built yet (I think I will give up on precompilation, though, since the benefits are a bit small). More... almost 18 years ago
40012 - Legacy EL Support not resolving variables correctly More... almost 18 years ago
Remove sendfile support, this is a native called, this will be a pure java connector More... almost 18 years ago
- Fix some obvious problems with the packaging. More... almost 18 years ago
since we are writing on a piggy back thread, better make it thread safe in case there are multiple backend threads writing (async or comet) More... almost 18 years ago
Add open office mime-types. Port of fix for bug 39865 from TC5. More... almost 18 years ago
- Should improve handling of the root logger (sorry, I don't know who submitted this, it was a while ago). More... almost 18 years ago
- Add the base webapps and stuff, so they're there (not built yet). More... almost 18 years ago
- Start work on a dist script (that I will keep separate to avoid having a bloated main script). More... almost 18 years ago
- Remove the spare threads attributes. More... almost 18 years ago
- If there is a security manager, the map should be reset (otherwise, references could be kept). More... almost 18 years ago
- Update to JDT 3.2 (I think TC 5.5 should be updated too). More... almost 18 years ago
- Redo the session activity check (which prevents expiring a session if there is an extremely long request and a short timeout) as optional, and using an atomic integer. More... almost 18 years ago
- As redoing the encoders and decoders won't happen immediately, save some memory by cleaning the cache when starting a Comet request (which is supposed to last for a while). More... almost 18 years ago
Change the compiler to the lastest version. More... almost 18 years ago
- Catch everything, as any unexpected exception would kill the server. More... almost 18 years ago
Dont do the not needed operations, if they are not needed. Performance is just a tad under java.io, which is expected as we need to poll, as opposed to constantly wait for data. More... almost 18 years ago
Two fixes, process timeouts last, no need to check a timeout on a valid read. hence we do it after we process the actual operations Throw an IO exception if we reach end of stream so that the sockets can get properly closed down Speed is the same for nio and io right now, nio seems just a tad faster without keep alives More... almost 18 years ago