1. #1
    Sencha User serdemwigi's Avatar
    Join Date
    Feb 2012
    Location
    Germany
    Posts
    34
    Vote Rating
    0
    serdemwigi is on a distinguished road

      0  

    Default Unanswered: Making some part of data offline and how tho synchronize the with server

    Unanswered: Making some part of data offline and how tho synchronize the with server


    my application gets many data from server such as:

    categories, available cities, available zip codes ( which are very rarely changed!)
    doctor information (which depends on user geo location and changes often)

    To make the application performance better I want to save the rarely changed data offline in localstorage. On the other hand I must detect in any way that my localstorage is not uptodate and if this is the case I must update them.

    Question is: How can I detect that localstorage data is not uptodate and there is a need to synchronize them again with server.

    This is a standart problem for applications with server - client communication so I hope there exist a standard solution pattern for it.

    Thanks a lot for any hint.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,656
    Vote Rating
    435
    Answers
    3109
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    I have timestamps of last data update and save it along with the localstorage data. I would then do an Ajax call to see if a newer timestamp is available, if it is then I get data and save it to localstorage store and update.
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User serdemwigi's Avatar
    Join Date
    Feb 2012
    Location
    Germany
    Posts
    34
    Vote Rating
    0
    serdemwigi is on a distinguished road

      0  

    Default


    Do you have a code fragment for this?