[CODE4LIB] MARC record model to be inserted in mongodb

2013-07-05 Thread dasos ili
Could you please give us any suggestions on a data model example regarding a MARC record? The goal is to be able to store it in mongodb, in an efficient way so as to get results with the appropriate queries. thank you in advance

Re: [CODE4LIB] MARC record model to be inserted in mongodb

2013-07-05 Thread Jean-Claude Dauphin
Hi Dasos, You may be interested to try J-ISIS. It uses Berkeley DB as key/value NoSQL database and Lucene for indexing records. https://kenai.com/projects/j-isis https://kenai.com/projects/j-isis/downloads/download/jisis_suite%2024%20June%202013.zip

[CODE4LIB] Σχετ: [CODE4LIB] MARC record model to be inserted in mongodb

2013-07-05 Thread dasos ili
thank you all for your quick replies

Re: [CODE4LIB] MARC record model to be inserted in mongodb

2013-07-05 Thread Sean Hannan
Also, I'm sure you have your reasons for wanting (or needing) to use mongodb, but you might want to take a look at this presentation: http://thebuild.com/presentations/pg-as-nosql-pgday-fosdem-2013.pdf and the benchmarks in the latter half of it. -Sean On 7/5/13 5:47 AM, dasos ili

Re: [CODE4LIB] MARC record model to be inserted in mongodb

2013-07-05 Thread Jon Stroop
Have you seen Ross' post: http://dilettantes.code4lib.org/blog/2010/09/a-proposal-to-serialize-marc-in-json/ ? pymarc can get you this json, e.g.: ``` records = pymrx.parse_xml_to_array('/path/to/some/marc.xml') json_file = [record.as_json() for record in records] ``` or, for that matter,

[CODE4LIB] Σχετ: [CODE4LIB] MARC record model to be inserted in mongodb

2013-07-05 Thread dasos ili
i am more familiar to PERL, but your code examples will help a lot, thank you Απο: Jon Stroop jstr...@princeton.edu Προς: CODE4LIB@LISTSERV.ND.EDU Στάλθηκε: 5:26 μ.μ. Παρασκευή, 5 Ιουλίου 2013 Θέμα: Re: [CODE4LIB] MARC record model to be inserted in mongodb