Resin Documentationapp server |
resin 4.0.26 release notes
Thanks to everyone who reported bugs in 4.0.24. We encourage people to report 4.0.26 bugs at http://bugs.caucho.com. Resin's thread pool has been updated to improve the efficiency and reduce the number of threads spawned. Applications with spiky load should see better performance and lower overall thread use. Resin's static file serving is now faster and more efficient with the operating system sendfile() support. Large files are sent directly from the file system to the HTTP socket by the operating system, minimizing Java overhead. Resin's jCache implementation has been updated, adding the new @CacheResult, and @CachePut Java Dependency Injection (CDI) annotations, which enable caching for any CDI-enabled bean. Resin's command line interface introduces a new command that deletes deployed configuration # deploy configuration resinctl config-deploy conf.jar # undeploy configuraton resinctl config-undeploy Capability to save PDF report was added to pdf-report command. # create pdf-report resinctl pdf-report -local -local-dir /tmp Default resin user and group is changed to www-data for Resin Daemon. New Resin REST interface provides an http(s) integration point. By default the interface is disabled. To enable the interface edit resin.properties to set rest_admin_enable property to true. Also configure admin_user and admin_password. Once the three prerequisites are met rest interface is available at its default url: http://locahost:8080/resin-rest curl --user admin:secret http://localhost:8080/resin-rest/jmx-list
|