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

I would like to provide a web tool that requires access to a large dataset. Preferentially, this R data object should be loaded into memory once and then be available for user-defined queries.

Does the openCPU framework support persistant data objects in any way or does every query begin with a blank slate?

share|improve this question

1 Answer

up vote 0 down vote accepted

How large is your data? OpenCPU does not have the concept of a 'session'. The calls are stateless, and you use the store to load objects from previous session. However, the server does caching (which will be even more improved in future versions), so if enough memory is available it will automatically be available from memory.

share|improve this answer
Great ! Thanks a lot for the quick reply. I am working with genomics datasets, but (up to now) it can be loaded into memory. Caching the data will thus probably work for my application. – user1678609 Sep 21 '12 at 22:30
A pretty simple way to handle sessions is to save user data in a database like mysql (or sqlite for smaller websites), along with a unique id. Then, after one preloads the relevant database packages in R/opencpu, each new function call will need to look at the cookies and/or request to find the session ID. One might also include some more security, such as adding a timestamp that expires, using cookies instead of url string identifiers, oauth, etc.. – Sasha Goodman Jan 21 at 0:27

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.