A modern, revamped implementation of Yaki.
- Move to a standard WSGI app model, using Bottle as both routing and templating engine
- Streamline the markup rendering pipeline
- Move all the cache management to an external process (Redis, Memcache, etc. - your choice)
- Split the indexer from the main body of code
- Get it running at insanely high speeds inside
uWSGI+gevent
orGunicorn+gevent
(and PyPy)
- Refactor all the configuration to use JSON
- Refactor all the inline logic according to MVC patterns
- Provide a set of APIs for gathering data
- Increase resiliency (lower RAM footprint, better horizontal scaling, better fault tolerance, etc.)
- Python 3 support (eventually, I'm actually aiming for PyPy)
- Support for (Multi)Markdown, Textile, raw HTML, etc.
- Flexible set of plugins
- Pygments integration (for technical documentation)
- Full-text indexing
Yaki has always been designed around three simple rules:
- Pure Python
- No external dependencies - everything is included
- No databases
All of these are, of course, applied within reason.