Developer Knowledge Base - What is Google Gears?:
What is Google Gears? Google Gears is an open source browser extension that lets developers create web applications that can run offline. Gears provides three key features:
- A local server, to cache and serve application resources (HTML, JavaScript, images, etc.) without needing to contact a server
- A database, to store and access data from within the browser
- A worker thread pool, to make web applications more responsive by performing expensive operations in the background Google Gears is currently an early-access developers’ release.
It is not yet intended for use by real users in production applications at this time. If you’re a developer interested in using Google Gears with your application, visit the Google Gears Developer Page. If you wish to install Google Gears on your computer, visit the Google Gears Home Page. Please note, however, that Google Gears is not yet intended for general use.
Google Gears API Developer’s Guide - Home:
Google Gears: Enabling Offline Web Applications Google Gears is an open source browser extension that lets developers create web applications that can run offline. Features Google Gears consists of three modules that address the core challenges in making web applications work offline.
- LocalServer - LocalServer Cache and serve application resources (HTML, JavaScript, images, etc.) locally
- Database - Database Store data locally in a fully-searchable relational database
- WorkerPool - WorkerPool Make your web applications more responsive by performing resource-intensive operations asynchronously
Samples The samples below demonstrate some of the Google Gears functionality. View source to see how the samples use the Google Gears API. Note: You must install Google Gears to use these samples.
- * Simple Database Demo - Store and retrieve values in the database
- * Simple ResourceStore Demo - Capture a URL and display it while offline
- * Simple ManagedResourceStore Demo - Capture a versioned set of URLs atomically and update them together
- * Simple WorkerPool Demo - Perform a long-running computation without blocking the browser UI