ESXX 0.9.20090201 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News ESXX 0.9.20090201 (Default branch)
# 1  
Old 02-02-2009
ESXX 0.9.20090201 (Default branch)

ESXX, pronounced Essex, is a Web application server that executes Web applications written in JavaScript (a.k.a. ECMAscript) on the server-side. It's written in Java and has no external dependencies except for J2SE 6.0. Everything else that's required is packaged in one single, executable JAR file, ready to be tested in Linux, Mac OS X, Solaris, Windows or any other platform where Java 6 is available. License: GNU General Public License v3 Changes:
Proper RPM (Fedora/RHEL), deb (Debian/Ubuntu), PackageMaker (OS X), and IPS (Opensolaris) packages. DNS and HTTPS URI handlers. A multipart/form-data parser. Better SOAP service support. Improved stylesheet matching rules. Timers. Rhino 1.7 release 2 RC3, H2 Database 1.1.107. Partial ECMAscript 3.1 compatibility provided by the "esxx/harmony.js" include file. A new JS class, LRUCache, which is used for thread-local and program-local data. An Importve JMX interface. Many other changes. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Jifty::Web::Session::ApacheSession(3pm) 		User Contributed Perl Documentation		   Jifty::Web::Session::ApacheSession(3pm)

NAME
Jifty::Web::Session::ApacheSession - Jifty Sessions based on Apache::Session SYNOPSIS
In your etc/config.yml, using the Apache::Session::File backend: framework: Web: SessionClass: Jifty::Web::Session::ApacheSession SessionBackend: File SessionOptions: Directory: /tmp/sessions LockDirectory: /var/lock/sessions Or with Apache::Session::Memorycached backend: framework: Web: SessionClass: Jifty::Web::Session::ApacheSession SessionBackend: Memorycached SessionOptions: { servers: [ '127.0.0.1:11211' ] } new Returns a new, empty session handler, subclassing Jifty::Web::Session. id Returns the session's id if it has been loaded, or "undef" otherwise. create Creates a new session. load [ID] Load up the current session from the given "ID", or the appropriate cookie (see "cookie_name" in Jifty::Web::Session) otherwise. If both of those fail, creates a session in memory. get KEY [TYPE] See "get" in Jifty::Web::Session. set KEY => VALUE, [TYPE] See "set" in Jifty::Web::Session. remove KEY, [TYPE] See "remove" in Jifty::Web::Session. remove_all See "remove_all" in Jifty::Web::Session. continuations See "continuations" in Jifty::Web::Session. perl v5.14.2 2010-09-25 Jifty::Web::Session::ApacheSession(3pm)