|
|
|
|
|
by don71
3648 days ago
|
|
Hi! I'm Claudius from ArangoDB. Saying Foxx is like stored procedures is overly simplistic. ArangoDB's external API is the HTTP API. Foxx lets you extend that HTTP API with arbitrary code that will be executed in V8 with direct access to the same native APIs it uses internally. The closest equivalents I'm aware of are RethinkDB's Horizon (which isn't hosted in the database) and CouchDB's CouchApps (which are far more limited in what they can do). You can think of it as having a subset of Node.js running right on top of the database with direct memory access and scaling (Foxx services run on each coordinator). |
|