Re: [mongodb-user] Loading XML docs - is there Java helper/s?
60 views
Skip to first unread message
मैं एक भारतीय बेवकूफ हूँ
unread,
Jun 20, 2012, 11:12:12 AM6/20/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mongod...@googlegroups.com
Greg Soulsby wrote:
> I have XML docs to analyse. What tools are there to take an XML doc and
> store in MondoDB? I am developing in Java.
If you expect a XML database then don't use MongoDB. If you want to
store the XML as-is then store it as string or using GridFS for files
larger than the 16MB limit. Apart from that google for "xml to json
conversion", brother
Sid
unread,
Jun 20, 2012, 1:19:05 PM6/20/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mongod...@googlegroups.com
If I correctly understand, you want to store the XML file as it is in mongo. GridFS is well suited for the purpose of storing large files in MongoDB.
All of the mongodb.org supported drivers implement the GridFS spec.