Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been working with Lucene.Net and FSDirectory for some time now, so I am familiar with the basics of working with it. However, I am now attempting to rewrite some key code by using RAMDirectory's when possible to speed up index use.

Loading an existing FSDirectory into a RAMDirectory is easy enough, just by using the appropriate constructor. However, I can't seem to figure out how I write it back to disk again.

I've seen some mention of a static Directory.copy() method in the Java version, but this doesn't seem to exist in Lucene.Net.

Is this possible?

Update: Turns out I was using an old version of Lucene.Net that didn't support this method. The "official binaries" on the official Lucene.Net site are apparently quite out of date. Thanks to CVertex for suggesting using NuGet to download and install the latest version of Lucene right within Visual Studio.

share|improve this question

1 Answer

up vote 4 down vote accepted

Directory.Copy static exists as per the Java version

public static void Copy(Lucene.Net.Store.Directory src, Lucene.Net.Store.Directory dest, bool closeDirSrc)

Member of Lucene.Net.Store.Directory

Perhaps you're not looking in right namespace.

share|improve this answer
Actually I think I might be using an old version, but I can't seem to find a zipped copy of anything newer on lucene.apache.org/lucene.net and I can't for the life of me figure out how to download from svn.apache.org--it just gives me directory listings (do I need to install an SVN client just to download from there?) – chaiguy Jan 17 '11 at 0:33
yes get a svn client, tortoise will do the job tortoisesvn.net/downloads.html – BrokenGlass Jan 17 '11 at 0:54
ok will do--thanks! – chaiguy Jan 17 '11 at 0:57
3  
I recommend using NuGet and download it from there (which is what I did), which will be kept pretty up to date with the latest official releases. Using the trunk is a bit dangerous as it's always in flux as they sync with the latest Java version. – CVertex Jan 17 '11 at 1:17
ah yes that's an even better alternative! – BrokenGlass Jan 17 '11 at 1:36
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.