I am writing a library that will use session and/or cache behind a facade interface. The library will store information there that should not be available for retrieval outside the library by using the cache/session key. In other words - only the library should know the key. At the same time the same cache or session will also be exposed outside the library, so any user code might access them.

My question is: what are the good ways to define such keys that will not be used accidentally on the same cache or session, but outside the library? Will using a hard-coded UUID string (generated by a UUID generator) be sufficient?

Edit:

The reason I am doing the above is to provide an abstraction of the cache storage. That way the user code will be in control what session/cache mechanisms will be used. Still, I would imagine the same storage will serve other needs of the library consumers.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.