Hi Shai, It sounds like the app is using XML as their data store.
And right now, rails (and Heroku) make it easier to use a relational db to store data. While you could hack together a solution that stores the data file in memcache, redis, or something, I wonder how hard it would be to just store the relationships as active record models in postgres. Think I'd either tweak to use SQL or use a different project. best of luck, Keenan On Jan 24, 2011, at 3:37 PM, bluewave <[email protected]> wrote: > I have an application I want to use (http://www.flashxml.net/galleries/ ) > this application needs to update an xml file with all the images information > in it. > if I would be working on disk based system I would just update this file so > the web browser can read it. > because I am using Heroku I can not update this file in the OS. do you know > if I could use send_data to send this xml file instead of using the file on > the OS? if you now how to do this please share this with me. > > Thanks > -- > You received this message because you are subscribed to the Google Groups > "Heroku" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
