Esteban C Borsani
Esteban C Borsani
int16 is used for the NFA node state indices Use int32 instead.
Recently it came to my attention [django-tenants](https://github.com/tomturner/django-tenants) and got me thinking about this. Multi-tenancy support (for djconfig) is certainly possible to implement by storing the current request domain (a string)...
Currently the database get fetch on every request to check whether there are config changes or not. This could be avoided by storing the `_updated_at` value in the cache. ```python...
Branch: https://github.com/nitely/django-hooks/tree/haystack Usage: https://gist.github.com/nitely/3a39d6eb6dd0196ff9ae Todo: - [x] Index hook - [ ] Form hook - [ ] Tests - [ ] Docs
Should allow to compile and link a v8 shared library. Also, this way it should be possible to distribute the binaries for OSX and Windows (static libraries are too big...
Changes: * Add asyncio support Todo: - [x] tests - [ ] docs - [ ] cookbook recipes
Would allow to run JS code in parallel. Should support asyncio. Should be transparent (ie: same API as for managing one VM)
Should allow to compile v8cffi with an external v8 static-library source. - [ ] Add `ENV['external_v8']` to use as path for the archives when compiling.
This is just for correctness. The underlying V8 platform is a singleton, so the C layer should be implemented as a singleton as well, nothing else should be refactored. Priority...