Hi George, I downloaded SharpZipLibAdapter and added it to the reference of My application as mentioned in the SharpZipLibAdapter.
But same result. The CheckCompressionSupport failed. Do i have change something in config-Files ? Or Can i not use it in NET 2.0. Thanks Mit freundlichen Grüssen, -------------------------------------- Neils Shoobridge Geschäftsführer IQ Telecom Gesellschaft für intelligente Telekommunikation mbH Speditionstrasse 15a 40221 Düsseldorf Tel. +49 (0) 211 3032-179 Fax +49 (0) 211 3032-178 Mobil +49 (0) 178 525 8118 mailto:[EMAIL PROTECTED] www.IQ-Telecom.de Sitz der Gesellschaft: Speditionstr. 15a, 40221 Düsseldorf Registergericht: Amtsgericht Düsseldorf, HRB 53479 Geschäftsführer: Christian Roschitz, Neils Shoobridge Diese Mitteilung ist vertraulich und nur für den oben genannten Adressaten bestimmt. Für den Fall, dass der Empfänger dieser Nachricht nicht mit dem genannten Adressaten identisch oder mit der Aushändigung an ihn betraut ist, weisen wir darauf hin, dass jede Verbreitung und Vervielfältigung untersagt ist. This message is confidential and intended only for the use of the addressee named above. If the reader of this message is not the intended recipient or competent to deliver it to the intended recipient, he is hereby notified that the dissemination, distribution or copying of this communication is strictly prohibited. -----Ursprüngliche Nachricht----- Von: George Aroush [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 28. März 2007 05:17 An: [email protected] Betreff: RE: Compression Support not configured ? Hi Neils, .NET 1.1 doesn't have compression API so I used reflection to solve this problem. Look at the class SharpZipLibAdapter in the file SharpZipLibAdapter.cs to see how you can use #ZipLib (http://www.icsharpcode.net/OpenSource/SharpZipLib/) to enable compression. If you are using .NET 2.0, you can use the .NET 2.0's ZIP compression; but be warned, the Lucene index will not be compatible with Java's index. This may be less of a problem if you don't care about compatibility, but then you can't use Luke (http://www.getopt.org/luke/) to analyze your index. -- George Aroush -----Original Message----- From: Neils [mailto:[EMAIL PROTECTED] Sent: Friday, March 23, 2007 1:42 PM To: [email protected] Subject: Compression Support not configured ? Hi, I want to use compression-support of Lucene. I'm using Lucene 2.0.0.4 and DotNet 2.0. Compression is done like this: Dim TermManufacture As New Field("Manufacture", Manufacture, Field.Store.COMPRESS, Field.Index.TOKENIZED) By trying this i got the errormsg "Compression Support not configured". How do I enable compression-support? Thanks :-)
