[CODE4LIB] CfP: DC-2009 "Semantic Interoperability of Linked Data" 12-16 October, 2009, Seoul, Korea

2009-01-30 Thread Childress,Eric
Apologies for cross-postings. Please forward to interested colleagues and mailing lists. CALL FOR PAPERS, PROJECT REPORTS, and POSTERS DC-2009 "Semantic Interoperability of Linked Data" (메타데이터와 온톨로지의 의미적 상호운용), in Seoul, Korea 12-16

Re: [CODE4LIB] perl wrapper for yaz-marcdump

2009-01-30 Thread Joe Atzberger
On Fri, Jan 30, 2009 at 4:12 PM, Eric Lease Morgan wrote: > Is there any way I can make my Perl wrapper for yaz-marcdump, below, more > efficient? Dump as you go rather than read up the whole thing into memory. Actually, why do you need perl at all? This is just a regular yaz-marcdump call. P

Re: [CODE4LIB] perl wrapper for yaz-marcdump

2009-01-30 Thread Joe Hourcle
On Fri, 30 Jan 2009, Eric Lease Morgan wrote: Is there any way I can make my Perl wrapper for yaz-marcdump, below, more efficient? [trimmed] For extra credit, is there anyway I can optimize m2u? For example, is there anyway to get rid of the while loop and slurp up yaz-marcdump's output in o

Re: [CODE4LIB] perl wrapper for yaz-marcdump

2009-01-30 Thread Jay Luker
On Fri, Jan 30, 2009 at 4:12 PM, Eric Lease Morgan wrote: > ># run yaz and trap the output >open ( C, "$y$f |" ) or die "Can't open converter: $!\n"; >while ( ) { $r = $_ } >close C; > > > For extra credit, is there anyway I can optimize m2u? For example, is there > anyway to get

[CODE4LIB] perl wrapper for yaz-marcdump

2009-01-30 Thread Eric Lease Morgan
Is there any way I can make my Perl wrapper for yaz-marcdump, below, more efficient? I have (yet another) application that takes MARC records as input, parses them, and indexes them. My indexer(s) want UTF-8 but sometimes my records are encoded as MARC-8. Consequently, I wrote a subroutine (m2u) t