<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Bibliographic Wilderness</title>
	<atom:link href="http://bibwild.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bibwild.wordpress.com</link>
	<description>Gone to Croatoan</description>
	<pubDate>Sun, 20 Jul 2008 23:22:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Free Covers? From Google? by Mike Kelly</title>
		<link>http://bibwild.wordpress.com/2008/06/06/free-covers-from-google/#comment-2847</link>
		<dc:creator>Mike Kelly</dc:creator>
		<pubDate>Fri, 11 Jul 2008 18:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/?p=106#comment-2847</guid>
		<description>I am keenly interested in getting book cover images added to our OPAC, particularly for our vast holdings of 19th-century fiction in special collections. This IMLS-funded site is an inspiration:

http://bindings.lib.ua.edu/

It's also a bit of a problem because it's a stand-alone database. I want accurate cover images embedded in the MARC record and easily browsable through the OPAC.

But the point you raise about cover image rights just makes me more determined to fight to add images of our copies of these books, rather than relying on images from a third party.</description>
		<content:encoded><![CDATA[<p>I am keenly interested in getting book cover images added to our OPAC, particularly for our vast holdings of 19th-century fiction in special collections. This IMLS-funded site is an inspiration:</p>
<p><a href="http://bindings.lib.ua.edu/" rel="nofollow">http://bindings.lib.ua.edu/</a></p>
<p>It&#8217;s also a bit of a problem because it&#8217;s a stand-alone database. I want accurate cover images embedded in the MARC record and easily browsable through the OPAC.</p>
<p>But the point you raise about cover image rights just makes me more determined to fight to add images of our copies of these books, rather than relying on images from a third party.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Threading in Rails by junebug</title>
		<link>http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2839</link>
		<dc:creator>junebug</dc:creator>
		<pubDate>Fri, 13 Jun 2008 16:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2839</guid>
		<description>im using mysql. i think mysql can handle queries in parallel. i replaced my thread code to use the spawn plugin instead and that seems to work. it fires off the queries in parallel and mysql has no problem with it. the problem is i want to return results from the forked off child processes back to the parent process.

i cant think of a good way to do that. perhaps i could create a tmp table in sql for each child process to update and read it back via the parent process. or have each child process write their result to the local /tmp disk and have the parent process read it all back. both of these sound bad to me.

thats why i liked threads because it looked like there was an easy way to pass results from the threads back to the main thread. oh well...i'll keep looking...thanks for the help though. i know i can probably easily do this with backgroundrb, but i dont want to deal with maintaining/monitoring another server.</description>
		<content:encoded><![CDATA[<p>im using mysql. i think mysql can handle queries in parallel. i replaced my thread code to use the spawn plugin instead and that seems to work. it fires off the queries in parallel and mysql has no problem with it. the problem is i want to return results from the forked off child processes back to the parent process.</p>
<p>i cant think of a good way to do that. perhaps i could create a tmp table in sql for each child process to update and read it back via the parent process. or have each child process write their result to the local /tmp disk and have the parent process read it all back. both of these sound bad to me.</p>
<p>thats why i liked threads because it looked like there was an easy way to pass results from the threads back to the main thread. oh well&#8230;i&#8217;ll keep looking&#8230;thanks for the help though. i know i can probably easily do this with backgroundrb, but i dont want to deal with maintaining/monitoring another server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Threading in Rails by Jonathan Rochkind</title>
		<link>http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2838</link>
		<dc:creator>Jonathan Rochkind</dc:creator>
		<pubDate>Fri, 13 Jun 2008 00:40:07 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2838</guid>
		<description>What database are you using? Is the database itself capable of handling concurrent connections?

I'm not really expert in this topic, but I'm not sure you can get an actual speed up by doing what you're doing.  You only have so much CPU and disk I/O available, I'm not sure that, even if you had a DB that could handle concurrent querries, the total time to completion of all the querries run in parallel will be any less than the total time of them all run serially.  Potentialy barring multiple CPUs and a database that knows how to use them. But this is not my area of expertise, sorry.</description>
		<content:encoded><![CDATA[<p>What database are you using? Is the database itself capable of handling concurrent connections?</p>
<p>I&#8217;m not really expert in this topic, but I&#8217;m not sure you can get an actual speed up by doing what you&#8217;re doing.  You only have so much CPU and disk I/O available, I&#8217;m not sure that, even if you had a DB that could handle concurrent querries, the total time to completion of all the querries run in parallel will be any less than the total time of them all run serially.  Potentialy barring multiple CPUs and a database that knows how to use them. But this is not my area of expertise, sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Threading in Rails by junebug</title>
		<link>http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2837</link>
		<dc:creator>junebug</dc:creator>
		<pubDate>Fri, 13 Jun 2008 00:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2837</guid>
		<description>i tried the approach above, but it fails to work for me. my rails app does fire off the threads in parallel, but the threads seem to share the same activerecord connection so they end up waiting and firing off db queries serially (which is exactly what i'm trying to parallelize!)

how do you work around this? i have the concurrency variable set to true and i'm using mongrel...

my app is fairly simple. i'm running 10 queries. i want to run them in parallel using threads and join the results for display. thanks in advance for any help you can provide</description>
		<content:encoded><![CDATA[<p>i tried the approach above, but it fails to work for me. my rails app does fire off the threads in parallel, but the threads seem to share the same activerecord connection so they end up waiting and firing off db queries serially (which is exactly what i&#8217;m trying to parallelize!)</p>
<p>how do you work around this? i have the concurrency variable set to true and i&#8217;m using mongrel&#8230;</p>
<p>my app is fairly simple. i&#8217;m running 10 queries. i want to run them in parallel using threads and join the results for display. thanks in advance for any help you can provide</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Threading in Rails by skwpspace &#8211; Long running Threads in Rails and metaprogramming fun</title>
		<link>http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2836</link>
		<dc:creator>skwpspace &#8211; Long running Threads in Rails and metaprogramming fun</dc:creator>
		<pubDate>Wed, 11 Jun 2008 03:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/2007/08/28/threading-in-rails/#comment-2836</guid>
		<description>[...] reading a post on using Ruby Threads, I decided to be brave and try this approach. I implemented a simple action which would spawn a [...]</description>
		<content:encoded><![CDATA[<p>[...] reading a post on using Ruby Threads, I decided to be brave and try this approach. I implemented a simple action which would spawn a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Think you can use Amazon api for library service book covers? by Free Covers? From Google? &#171; Bibliographic Wilderness</title>
		<link>http://bibwild.wordpress.com/2008/03/19/think-you-can-use-amazon-api-for-library-service-book-covers/#comment-2833</link>
		<dc:creator>Free Covers? From Google? &#171; Bibliographic Wilderness</dc:creator>
		<pubDate>Fri, 06 Jun 2008 21:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/2008/03/19/think-you-can-use-amazon-api-for-library-service-book-covers/#comment-2833</guid>
		<description>[...] we get to the actual legal issues (discussed here before). To begin with a &#8220;terms of service&#8221; that you do NOT in fact need to even &#8220;click [...]</description>
		<content:encoded><![CDATA[<p>[...] we get to the actual legal issues (discussed here before). To begin with a &#8220;terms of service&#8221; that you do NOT in fact need to even &#8220;click [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on custom code4lib google search engine: another late night idea by gary price</title>
		<link>http://bibwild.wordpress.com/2008/06/02/delicious-to-google-cse/#comment-2832</link>
		<dc:creator>gary price</dc:creator>
		<pubDate>Mon, 02 Jun 2008 17:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/?p=105#comment-2832</guid>
		<description>Just remember that Google Custom Search does not always find all results for a search. We have been blogging about this for almost a year on ResourceShelf. 

Deep inside the Google CSE documentation you'll find the info. 

Here's the RS post from August, 2007. 

See second item here:
http://www.resourceshelf.com/2007/08/20/briefs-using-more-than-sites-when-building-a-google-custom-search-zohos-powerful-web-based-notebook-adds-more-features/

and

direct at:
http://www.google.com/support/customsearch/bin/answer.py?answer=70392&#38;topic=11502

cheers,
gary</description>
		<content:encoded><![CDATA[<p>Just remember that Google Custom Search does not always find all results for a search. We have been blogging about this for almost a year on ResourceShelf. </p>
<p>Deep inside the Google CSE documentation you&#8217;ll find the info. </p>
<p>Here&#8217;s the RS post from August, 2007. </p>
<p>See second item here:<br />
<a href="http://www.resourceshelf.com/2007/08/20/briefs-using-more-than-sites-when-building-a-google-custom-search-zohos-powerful-web-based-notebook-adds-more-features/" rel="nofollow">http://www.resourceshelf.com/2007/08/20/briefs-using-more-than-sites-when-building-a-google-custom-search-zohos-powerful-web-based-notebook-adds-more-features/</a></p>
<p>and</p>
<p>direct at:<br />
<a href="http://www.google.com/support/customsearch/bin/answer.py?answer=70392&amp;topic=11502" rel="nofollow">http://www.google.com/support/customsearch/bin/answer.py?answer=70392&amp;topic=11502</a></p>
<p>cheers,<br />
gary</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OAISter -&#62; points to plenty of non open access stuff by nostuff</title>
		<link>http://bibwild.wordpress.com/2008/01/25/oaister-not-open-access/#comment-2820</link>
		<dc:creator>nostuff</dc:creator>
		<pubDate>Tue, 27 May 2008 19:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/?p=70#comment-2820</guid>
		<description>Hi

Good post, agree we need an OAIster which only searches across open access content. I am probably one of many who were not aware of their policy and presume it was a service to search open content.

On a different note,
I've heard people talk about (on the jisc-repository mailing list) the disadvantages of OAI-PMH. My (basic) understanding is that OAI-PMH concentrates on describing records, and not the actual full text content.

I can see what they mean. Looking at this example
http://eprints.sussex.ac.uk/perl/oai2?verb=GetRecord&#38;metadataPrefix=oai_dc&#38;identifier=oai:eprints.sussex.ac.uk:777

(you may need to do 'view source' to see the actual XML OAI-PMH

You can see that there are two relations. Now one so happens to be a copy of the item (full text) within the repository that, for whatever reason, is only accessible by the repository admin (which so happens to be me). The other relation is a DOI Url which will take you to the publisher's copy of the article.

Now I know nothing about OAI-PMH, but I can see nothing in the code which states these facts, i.e. that one is an external link, and one is not publicly available. That seems like not a good thing to me.

Cheers
Chris Keene</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Good post, agree we need an OAIster which only searches across open access content. I am probably one of many who were not aware of their policy and presume it was a service to search open content.</p>
<p>On a different note,<br />
I&#8217;ve heard people talk about (on the jisc-repository mailing list) the disadvantages of OAI-PMH. My (basic) understanding is that OAI-PMH concentrates on describing records, and not the actual full text content.</p>
<p>I can see what they mean. Looking at this example<br />
<a href="http://eprints.sussex.ac.uk/perl/oai2?verb=GetRecord&amp;metadataPrefix=oai_dc&amp;identifier=oai:eprints.sussex.ac.uk:777" rel="nofollow">http://eprints.sussex.ac.uk/perl/oai2?verb=GetRecord&amp;metadataPrefix=oai_dc&amp;identifier=oai:eprints.sussex.ac.uk:777</a></p>
<p>(you may need to do &#8216;view source&#8217; to see the actual XML OAI-PMH</p>
<p>You can see that there are two relations. Now one so happens to be a copy of the item (full text) within the repository that, for whatever reason, is only accessible by the repository admin (which so happens to be me). The other relation is a DOI Url which will take you to the publisher&#8217;s copy of the article.</p>
<p>Now I know nothing about OAI-PMH, but I can see nothing in the code which states these facts, i.e. that one is an external link, and one is not publicly available. That seems like not a good thing to me.</p>
<p>Cheers<br />
Chris Keene</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Academic freedom and privacy by Hugh Taylor</title>
		<link>http://bibwild.wordpress.com/2008/05/26/academic-freedom-and-privacy/#comment-2818</link>
		<dc:creator>Hugh Taylor</dc:creator>
		<pubDate>Tue, 27 May 2008 06:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/?p=103#comment-2818</guid>
		<description>In the interests of accuracy I should point out something that the Guardian article makes quite clear - the threat of deportation arises from unrelated immigration charges. It doesn't make it any less distressing for the individual concerned, of course, but it's quite different to being charged under the Terrorism Act. Especially for one's reputation.</description>
		<content:encoded><![CDATA[<p>In the interests of accuracy I should point out something that the Guardian article makes quite clear - the threat of deportation arises from unrelated immigration charges. It doesn&#8217;t make it any less distressing for the individual concerned, of course, but it&#8217;s quite different to being charged under the Terrorism Act. Especially for one&#8217;s reputation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I wish I could do with Internet Archive by Internet Archive and just my timing &#171; Rube Goldberg machines for libraries</title>
		<link>http://bibwild.wordpress.com/2008/05/23/what-i-wish-i-could-do-with-internet-archive/#comment-2815</link>
		<dc:creator>Internet Archive and just my timing &#171; Rube Goldberg machines for libraries</dc:creator>
		<pubDate>Mon, 26 May 2008 20:06:06 +0000</pubDate>
		<guid isPermaLink="false">http://bibwild.wordpress.com/?p=102#comment-2815</guid>
		<description>[...] Archive and just my&#160;timing  After Jonathan Rochkind&#8217;s post about the Internet Archive not providing an API, I spent part of the weekend writing a screen scraper to get at what we want from the Internet [...]</description>
		<content:encoded><![CDATA[<p>[...] Archive and just my&nbsp;timing  After Jonathan Rochkind&#8217;s post about the Internet Archive not providing an API, I spent part of the weekend writing a screen scraper to get at what we want from the Internet [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>