Peter Lawrey

Results 79 comments of Peter Lawrey

Compilation should be incremental and not recompile everything each time. This may require moving compiled classes to the `.class` instead of retaining the `.java`

Do any open source libraries need a reference to enterprise releases or snapshots?

Agreed we should have a better accounting of disk usage to prevent this.

Needs https://github.com/OpenHFT/Chronicle-Threads/issues/71

Please see an example as a starting point for HTTP. Need to add a test that connects to the built in Java HTTP server in test. Also add a simple...

Example of a simple HTTP server https://dzone.com/articles/simple-http-server-in-java

The main features are; - Supports multiple wire types - Supports the MethodWriters - Works using Java 8 builtin libraries - Is entirely open source.

This is a major change, suitable for when we re-write for Java 17.

JRE version: 7.0_07-b11 I would suggest updating this version of Java 7 update 67 as update 7 is pretty old. (If not Java 8) I don't think it would make...

If you want to iterate over the entries of any Map (not just ours) the most efficient means is to use entrySet() e.g. for (Map.Entry entry: cache.entrySet()) { as you...