Scrooge is a cache-centric framework for asynchronous web applications.
Project home page: scrooge.leknarf.net
Scrooge is currently alpha software in an early stage of development.
- All client requests can be handled with or without a running backend server.
- Content is served out of Amazon's S3
- Requests are submitted as Github gists
A web page consists of two components: an HTML template and a optional JSON document.
There are there kinds of web pages:
- Completely static pages (just HTML)
- Semi-dynamic pages (template HTML + pre-compiled JSON data)
- Fully-dynamic pages (template HTML + dynamically generated JSON data)
Completly static web pages are supported by just retrieving a template from S3.
Semi-dynamic web pages require AJAX:
- The browser loads the blank template.
- An ajax call retrieves the appropreate JSON document from S3.
Fully-dynamic page get interesting:
- The browser loads the blank template
- An ajax call from the client checks whether s3://results/my_data.json exists 1. If it does not, the client PUTS a blank JSON document to s3://results/my_data_hash.json and a JSON document with the query parameters to s3://requests/my_data_hash.json
- The client now polls S3 and waits for data to be added to s3://results/my_data_hash.json 1. The server polls s3://requests/ looking for new requests 2. It PUTS the results to s3://results/my_data.json 3. It DELETES s3://requests/my_data.json
- The client now retrieves the completed JSON and renders the template, like a semi-dynamic page.
Workers are responsible for consuming from the submission queue and populating the cache
- Polls github gist for requests
- Processes request (business logic)
- Posts results to s3://data/#####.json