Bo Lorentsen a écrit :
Hi ...
I have been looking at neko (haXe really), and I end up having some
questions about this nice VM.
1. Are there any kind of debugging in neko_vm (or haxe), besides nice
static type checks ?
There is no step-debugger but Neko bytecodes contains line/file infos
for exceptions stack traces.
2. mod_neko (and tora) seems not to be able to read some kind of apache
options (NekoOption ?) am I missing something, or is this planed in the
(near) future ?
both have some global .htaccess options, but there is no local .htaccess
support
3. I can see that a SQLite, and MySQL db are available, will a
PostgreSQL db be possible or even welcome ? are mod_neko supporting
persistent connections, or will neko vm restart on every request ?
There is already a haXe/Neko PostgreSQL binding available, you can
implement persistent connections with setting main entry point function
(neko.Web.cacheModule haXe API). Or with tora.Share API which enable
memory sharing on the same server.
Nicolas
--
Neko : One VM to run them all
(http://nekovm.org)