Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm thinking of using firebase to write a mobile app using PhoneGap and the HTML5 Application Cache.

Lets suppose each user has a list of TODO items. If the app is started when the phone is offline, will it be able to load data from the previous session and sync when a connection is established? If so I'm wondering how this is implemented because I couldn't find a reference to localStorage in firebase.js.

share|improve this question

1 Answer

up vote 3 down vote accepted

The short answer is: not yet.

Once an app has connected to Firebase, the client will cache data locally and be able to access data where there is an outstanding "on" callback even after a network connection is lost. However, this data is not persisted to disk, the "offline mode" will only work while the app is still running.

Full offline support will be coming in the future.

share|improve this answer
Ok, I look forward to that as it's a must-have feature for me. Hopefully it'll be done by the time I get an invite ;) – eug Feb 3 at 9:13
I ran into this missing feature with Firebase today. It'll be great to have full application cache support. – mndrix Mar 15 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.