For data-centric services, there is Foxx. But if I understand correctly, what you ask for is basically something like Node.js running inside of the database. That is not a good idea however. Node.js is asynchronous and single-threaded, whereas the database system is synchronous and multi-threaded. It doesn't really fit together. Long-lasting operations would block an entire V8 context in Foxx. With all contexts in use, additional requests would fail.
-- You received this message because you are subscribed to the Google Groups "ArangoDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
