Re: [CODE4LIB] CODE4LIB Web archive??

2007-11-23 Thread Jonathan Gorman
Quick google search turns up this one, haven't used it though ;) http://serials.infomotions.com/code4lib/ Also, I think this is the official page and it has a couple of links http://dewey.library.nd.edu/mailing-lists/code4lib/ Jon Original message >Date: Fri, 23 Nov 2007 13:31:35 -060

[CODE4LIB] CODE4LIB Web archive??

2007-11-23 Thread Hahn, Harvey
Is there a Web-accessible archive of CODE4LIB messages? If so, what's the URL? Thanks! Harvey -- === Harvey E. Hahn, Manager, Technical Services Department Arlington Heights (Illinois) Memorial Library 847/506-2644 - FX: 847/506-2650 - Email: hhahn(at)ahm

Re: [CODE4LIB] Suggestions on JAVA / Eclipse learning

2007-11-23 Thread Nicola Cecchino
Hello, I've taken JAVA programming classes and have had to withdraw because I haven't any JAVA programming or any programming experience - and for the most part, the professors geared the course to those who have had it. I've decided that I'm not going to let it rest and am now reading a very

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Erik Hatcher
One of the biggest bangs you can get out of indexing is to multi- thread it pretty heavily. Solr can accept lots of simultaneous connections. Folks worried about the HTTP communication are typically those that are new to Solr and see that as a bottleneck without measuring. Those that have done t

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Erik Hatcher
On Nov 23, 2007, at 7:50 AM, Michael Lackhoff wrote: You can also bring data into Solr using the CSV importer. I highly recommend folks take a good look at this route. It's clean, easy, fast: That sounds like what I need. Only problem I see: what about

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Michael Lackhoff
On 23.11.2007 10:39 Erik Hatcher wrote: > As far as I know there is no way to avoid POSTing in the XML - no > direct import of an XML file without HTTP (without getting down and > dirty and writing to the embedded Solr API, which is a bit > discouraged for many reasons). Ok. > You can also bring

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Ewout Van Troostenberghe
>> How do you fill the index? Our main database has about 700,000 records >> and I don't know if I should build one huge XML-file and feed that into >> SOLR or use a script that sends one record at a time with a commit after >> every 1000 records or so. Or do something in between and split it into

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Erik Hatcher
On Nov 22, 2007, at 3:41 PM, Kent Fitch wrote: On Nov 23, 2007 4:11 AM, Binkley, Peter <[EMAIL PROTECTED]> wrote: ... If you use boost on the date field the way you suggest, remember you'll have to reindex from scratch every year to adjust the boost as items age. Or maybe just use a method

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Erik Hatcher
On Nov 22, 2007, at 12:11 PM, Binkley, Peter wrote: There is a way to pass Solr a path to a file that it can read from disk rather than posting the file. I hunted a bit in the wiki and couldn't find it, though; it may still be a patch you have to apply. Solr ships with examples that can be post

Re: [CODE4LIB] Suggestions on JAVA / Eclipse learning

2007-11-23 Thread Peter Kiraly
Hi! If you are a visual type, I suggest O'Reilly's Head First series. If you are looking for a good foundation, Ivor Horton's Beginning Java 2, JDK 5 Edition (Wiley, 2005) (The current Java is the JDK 6, so it isn't the freshest, but it's a good book). There are some good books on Java for differ

Re: [CODE4LIB] Getting started with SOLR

2007-11-23 Thread Michael Lackhoff
Thanks for the answers, they helped a lot! > Field types: you'll probably want to index things like titles in two > fields, one tokenized (text) and one not (string), so that you can > retrieve and match the full title as well as searching for terms within > it. See the way the Solr sample app use

[CODE4LIB] Suggestions on JAVA / Eclipse learning

2007-11-23 Thread Michael Lackhoff
Hello again, as mentioned in my previous post about SOLR I want to learn at least some JAVA basics. I have some programming background, including object orientated programming. So I don't need stuff like "what is a variable" or "what is inheritance" but I have never written a single line of JAVA c