I just saw that the newer wordpress (newer meaning since the last time I used wordpress 5-6 years ago and today) is using Google Gears, this seems really cool but I am not 100% sure exactly how they use it? I am working on a social network site in PHP (facebook, myspace) can you think of anything on a site like that where gears could benefit the user?
Asked
Active
Viewed 74 times
0
-
Isn't Google Gears... dead now? in favor of HTML5 local storage? – LiraNuna Jan 25 '10 at 04:23
-
@LiraNuna: More or less yes, although of course HTML5 adoption isn't there yet in all browsers. http://www.readwriteweb.com/archives/google_dumps_gears_for_html5.php – Michael Stum Jan 25 '10 at 04:25
-
MySpace uses gears, so you could look at some of how they use it. – Joel Coehoorn Jan 25 '10 at 04:32
-
I really don't know much about it, I'll have to look into this html5 local storage you mention – JasonDavis Jan 25 '10 at 04:38
1 Answers
1
Gears allows for some local caching. Basically the application stores data in a local SQLite database, which allows better caching and offline usage. That means you could even work the the application when you do not have an internet connection and when you go online again, your changes are synchronized.
I'm not sure how WordPress uses it, but for a social network it could be used for example to cache private messages so that people can access them while offline (doesn't GMail or Google Reader use it for that?) or maybe the last copy of the "Live Stream"/Wall/Whatever.

Michael Stum
- 177,530
- 117
- 400
- 535