• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Can JMS be used for persistance object storage?

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't want to store user data in database or files. How can JMS or JNDI help me do that?
 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Al Kaiser:
I don't want to store user data in database or files. How can JMS or JNDI help me do that?


Well JMS is really targetted toward messaging between objects and applications. In theory you could use JNDI for persistence but again you would be trying to force a square into a round hole. Also, by forgoing an actual database or file based persistence you would be requiring that your system have 100% uptime or it's bye bye to your data.
Out of curiosity, what is your reason for not wanting to use a db?
 
reply
    Bookmark Topic Watch Topic
  • New Topic