Re: [VOTE] Release PyLucene 4.5.1-1

2013-10-30 Thread Thomas Koch
+1 I could build JCC 2.18 and pylucene-4.5.1-1 on MacOS X (10.8.5) w. python2.7 and java'1.6.0_65' all tests pass Note (minor): I always get the following error upon the first call of "make install" - that's not a real issue, the second call succeeds - just annyoing ,-) I'm using a virtualen

AW: [VOTE] Release PyLucene 4.3.0-1

2013-05-08 Thread Thomas Koch
Hi, I was able to build JCC 2.16 and PyLucene 4.3.0-1 on Win32, Python 2.7, Java 1.6, ant 1.9. The "make test" raises the typical windows issues. I also tried the basic Index/SearchFiles example (with no problems). +1 Regards Thomas -Ursprüngliche Nachricht- Von: Andi Vajda [mailto:va...

AW: AW: Pylucene release

2012-11-29 Thread Thomas Koch
> -Ursprüngliche Nachricht- > Von: Andi Vajda [mailto:va...@apache.org] > Gesendet: Mittwoch, 14. November 2012 18:36 > An: pylucene-...@lucene.apache.org > Betreff: Re: AW: Pylucene release > > > Hi Thomas, > > On Wed, 14 Nov 2012, Thomas Koch wrote: > &g

AW: DLL load failed: The specified module could not be found. from jcc import _jcc

2012-09-21 Thread Thomas Koch
lutions which offer SOLR which make deploying the > solution easier. It did require me to go back and refactor my code :-( but at > least is working well. > > Thanks. > > > On Fri, Aug 24, 2012 at 12:29 AM, Thomas Koch wrote: > > > Hi Carlos, > > Just another

AW: [ANNOUNCE] Apache PyLucene 3.6.1

2012-08-31 Thread Thomas Koch
Dear all, pre-built eggs for PyLucene 3.6.1 and JCC 2.14 (on windows operating systems) are provided on http://code.google.com/a/apache-extras.org/p/pylucene-extra/ regards Thomas -- OrbiTeam Software GmbH & Co. KG http://www.orbiteam.de > -Ursprüngliche Nachricht- > Von: Andi Vajda [m

AW: [VOTE] Release PyLucene 3.6.1-2

2012-08-21 Thread Thomas Koch
Thanks, JCC 2.14 now builds just fine with MS-VC9 on Windows. Could also build pylucene 3.6.1 and run the tests (except of the usual suspects on windows that fail due to the file lock issue). So +1 for release. kind regards Thomas -- OrbiTeam Software GmbH & Co. KG http://www.orbiteam.de >

AW: [VOTE] Release PyLucene 3.6.1

2012-08-20 Thread Thomas Koch
Hi, I had some trouble with the windows build of this version: while building JCC 2.14 in my windows7-32 build env (python2.7,Java1.6,Microsoft Visual Studio 9.0 C++) the build fails on command cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -D_java_generics -DJCC_VER="2.14" "-IC:\Program Files\Java\j

PyLucene 3.6 build on MacOS and PyLucene website

2012-08-08 Thread Thomas Koch
Hi, I'm also running Mac OS now (besides windows still ,-) and was able to build & install PyLucene 3.6.0.2 on MacOS-X (10.7/intel/Python2.7) without any problems - that's the good news. However it was quite difficult for me to get the download files and installation instructions: Download

AW: [VOTE] Release PyLucene 3.6.0 rc2

2012-05-08 Thread Thomas Koch
I could build JCC and PyLucene on Win7-32 with Python27 and Java16. The ivy thing gets installed automatically. All tests pass except of the PythonDirectoryTests and testTiming. However there's a known issue about some tests that fail on windows thus this shouldn't be a release blocker. I've inves

AW: AW: AW: AW: AW: PyLucene use JCC shared object by default

2012-05-04 Thread Thomas Koch
Thanks, Andi - test runs fine now. I've another small contribution to offer: samples/java/FacetExample.py - It's a python port of the facet example in java in package org.apache.lucene.facet.example.simple (actually it's a bit simplified as the four java files are merged into one python file: Simp

AW: AW: PyLucene use JCC shared object by default

2012-04-30 Thread Thomas Koch
Dear Andi, I again had a look at the patch I submitted recently and would like to get back to it. An updated version of the patch is attached to this email - the patch is against the branch_3x repo http://svn.apache.org/repos/asf/lucene/pylucene/branches/branch_3x The patch mainly - adds two

Re: JCC initVM crash

2012-04-26 Thread Thomas Koch
Chris, Did you Build JCC yourself or did you download pre-built Version? A typical problem is that Java cannot be found at runtime - make sure that your Java Client dll is available in path. Regards Thomas -- Am 26.04.2012 um 20:30 schrieb Chris Guin : > Hi - > > I'm trying to use JCC to wra

AW: PyLucene use JCC shared object by default

2012-04-23 Thread Thomas Koch
lds. Here's an example of use: > http://pastebin.com/Lq3LZKMp. The whole module is ~2000 lines (python > interface, c++ implementation, comments). With initial tests, the algorithm is > about 100 faster in C++ than when implemented in Python. > > On Wed, Apr 18, 2012 at 9:31 AM,

AW: PyLucene use JCC shared object by default

2012-04-18 Thread Thomas Koch
Hi, sounds like an interesting project – may I ask what you actually implemented and what’s the motivation (e.g. performance?)? I’ve started to experiment with the Facet support in Lucene (actually in PyLucene – ported an example to Python) and found that facetted search support in Lucene looks

AW: AW: AW: AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-03-15 Thread Thomas Koch
Hi, I have to add a comment to my previous mail: > I'd preferred using this option (#2) in toArray (for both JavaList and > JavaSet) as it does not require the wrapping into Java Integer (etc.) objects. > However this method does not work with lucene.ArrayList: > > >> x=lucene. JArray ('int')([

AW: AW: AW: AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-03-13 Thread Thomas Koch
e busy for most of the week and out of office next week. regards, Thomas -Ursprüngliche Nachricht- Von: Andi Vajda [mailto:va...@apache.org] Gesendet: Montag, 12. März 2012 03:34 An: pylucene-...@lucene.apache.org Cc: Thomas Koch Betreff: Re: AW: AW: AW: Setting Stopword Set in PyLucen

AW: AW: AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-03-02 Thread Thomas Koch
Hi Andi, thanks for the feedback! I revised the code and send you attached a new patch. I also attach a short demo script that shows the problems I mentioned earlier when trying to initialize an ArrayList with a JavaSet (or JavaList) containing integers. Finally I'd suggest to rename collections

PyLucene3.5 windows binaries

2012-02-03 Thread Thomas Koch
Hi, Just uploaded PyLucene3.5 windows binaries for Python 2.6 and 2.7 to the PyLucene-Extras project: http://code.google.com/a/apache-extras.org/p/pylucene-extra/ regards, Thomas

AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-02-01 Thread Thomas Koch
OK, I found a solution (obviously not the best one...): lucene.Set is representing a java.util *interface* Set which of course cannot be instantiated. HashSet is an implementing class, and can be instantiated. You can add elements via the add() method to the set then. Example: def get_lucene_set(p

Facet support in (Py)Lucene34

2011-10-27 Thread Thomas Koch
Hi, slightly related to my previous post today: I was reading about a new faceted search support in java-lucene-34 - see Changelog: LUCENE-3079: a new facet module which provides faceted indexing & search capabilities. It allows managing a taxonomy of categories, and index them with documents. It

RE: [VOTE] Release PyLucene 3.4.0

2011-09-16 Thread Thomas Koch
+1 for the release - I was able to build both JCC and PyLucene on Win32 (Py26/Java16) and run "make test". Cheers, Thomas -- OrbiTeam Software GmbH & Co. KG Endenicher Allee 35 53121 Bonn Germany http://www.orbiteam.de > -Original Message- > From: Andi Vajda [mailto:va...@apache.org] >

RE: building PyLucene 3.0.2 on Win7/MinGW with Python 2.7

2011-07-21 Thread Thomas Koch
Bill, I just read through your posting about the MinGW issues in "DLL Hell". Did you ever manage to get MinGW compile JCC and link against msvcr90.dll? I think I'm facing a similar issue (see post of today) and tried to change MinGW spec to use msvcr90 (as mentioned in http://www.mingw.org/wiki/HO

RE: [VOTE] Release PyLucene 3.3 (rc2)

2011-07-21 Thread Thomas Koch
Hi, I've just tried to build PyLucene 3.3 on win32 and failed. This may be unrelated to V3.3 though as I tried the build process with minGW for the first time (used MSVC before)! Just wondering if I'm doing sth wrong or anyone had this issue and can help: Using - Python 2.6.6 (r266:84297, Aug 24

Keysigning @ Berlin Buzzwords

2011-05-29 Thread Thomas Koch
ys after the event * please only use keys with at least 2024 bits! * please make sure that you've uploaded your key to a public keyserver * I'm happy to answer all remaining questions at the BarCamp on Sunday or during the event Best

Re: Let's drop Maven Artifacts !

2011-01-18 Thread Thomas Koch
Hi, the developers list may not be the right place to find strong maven supporters. All developers know lucene from inside out and are perfectly fine to install lucene from whatever artifact. Those people using maven are your end users, that propably don't even subscribe to users@. T

Test instance of Gerrit?

2010-12-21 Thread Thomas Koch
astructure-...@a.o in the back. I just think it would help to have some hands-on experience so that people can make better judgements. Best regards, Thomas Koch, http://www.koch.ro - To unsubscribe, e-mail: dev-unsubscr...@lucene.

[jira] Created: (SOLR-2260) syntax error in shell script "abo"

2010-12-01 Thread Thomas Koch (JIRA)
syntax error in shell script "abo" -- Key: SOLR-2260 URL: https://issues.apache.org/jira/browse/SOLR-2260 Project: Solr Issue Type: Sub-task Affects Versions: 1.4.1, 1.4 Reporter: T

RE: API changes between 2.9.2 and 2.9.3

2010-07-20 Thread Thomas Koch
> Porting your stuff to Lucene 3.0 is recommended... > [Thomas Koch] That's what I'm supposed to do next: port our PyLucene code to some "up-to-date" release - our codebase is still on PyLucene 2.6 and I expect it to break with the 3.x release ... With that in mind: is

Re: Please get your gpg keys signed!

2010-06-25 Thread Thomas Koch
Robert Muir: > On Fri, Jun 25, 2010 at 5:29 AM, Thomas Koch wrote: > > But checking the signatures of apache software obviously is meaningless, > > since > > apache developers appears to not have their keys in the web-of-trust. > > From three signature files I had la

Please get your gpg keys signed!

2010-06-25 Thread Thomas Koch
you for your ID card to check your identity!) It's also nice to have your gpg fingerprint on your business cards! [1] http://www.sophos.com/blogs/chetw/g/2010/06/12/linux-malware-rears-ugly- head/ [2] http://en.wikipedia.org/wiki/Key_signing_party Thank you! Thomas Koch

Re: official GIT repository / switch to GIT?

2010-04-19 Thread Thomas Koch
I'm sure > some companies would revisit their policies. I've read stories of entire teams using git-svn against the companies official SVN repos because they just can't stand it anymore once they got hooked. Best regards, Thomas Koch, http://www.koch.ro - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org