Re: mysolr python client

2011-12-01 Thread Alejandro Gonzalez
sounds great for a python project i'm involved in rigth now. I'll take a deeper look on it. thx marco 2011/11/30 Marco Martinez mmarti...@paradigmatecnologico.com Hi all, For anyone interested, recently I've been using a new Solr client for Python. It's easy and pretty well documented. If

Re: solr connection question

2010-07-08 Thread Alejandro Gonzalez
ok please don't forget it :) 2010/7/8 Ruben Abad rua...@gmail.com Jorl, ok tendré que modificar mi petición de vacaciones :( Rubén Abad rua...@gmail.com On Thu, Jul 8, 2010 at 2:46 PM, ZAROGKIKAS,GIORGOS g.zarogki...@multirama.gr wrote: Hi solr users I need to know how solr

Re: Faceted Search

2009-04-17 Thread Alejandro Gonzalez
if you are querying using a http request you can add these two parameters: facet=true facet.field=field_for_faceting and optionally this one to set the max number of facets: facet.limit=facet_limit I don't know if it's what you need... On Fri, Apr 17, 2009 at 6:17 AM, Sajith Weerakoon

Re: indexing txt file

2009-04-15 Thread Alejandro Gonzalez
will be able to index a bunch of my text files in real time? On Tue, Apr 14, 2009 at 9:35 AM, Alejandro Gonzalez alejandrogonzalezd...@gmail.com wrote: and i'm not sure of understanding what are u trying to do, but maybe you should define a text field and fill it with the text in each file

Re: indexing txt file

2009-04-14 Thread Alejandro Gonzalez
you should construct the xml containing the fields defined in your schema.xml and give them the values from the text files. for example if you have an schema defining two fields title and text you should construct an xml with a field title and its value and another called text containing the body

Re: indexing txt file

2009-04-14 Thread Alejandro Gonzalez
14, 2009 at 12:37 AM, Alejandro Gonzalez alejandrogonzalezd...@gmail.com wrote: you should construct the xml containing the fields defined in your schema.xml and give them the values from the text files. for example if you have an schema defining two fields title and text you should

Re: indexing txt file

2009-04-14 Thread Alejandro Gonzalez
and i'm not sure of understanding what are u trying to do, but maybe you should define a text field and fill it with the text in each file for indexing the text in them, or maybe a path to that file if that's what u want. On Tue, Apr 14, 2009 at 6:28 PM, Shalin Shekhar Mangar

Re: Quick Indexing Method???

2009-04-01 Thread Alejandro Gonzalez
What about building an XML with text fields as everyones does ? :) On Wed, Apr 1, 2009 at 6:17 PM, Alex Vu alex.v...@gmail.com wrote: Hello, I am new to Solr. I looked at getting started document. Can somebody show me how to index text file. I've tried other method, it just takes too

Re: How do I accomplish this (semi-)complicated setup?

2009-03-25 Thread Alejandro Gonzalez
you can even create separated indexes for private or public access if u need (and place them in separated machines), but i think Eric's suggestion is the best and easier On Wed, Mar 25, 2009 at 5:52 PM, Jesper Nøhr jno...@gmail.com wrote: Hi list, I've finally settled on Solr, seeing as it

Re: How do I accomplish this (semi-)complicated setup?

2009-03-25 Thread Alejandro Gonzalez
i can't see the problem about that. you can manage your users using a DB and keep there the permissions they could have, and create or erase users without problems. you just have to manage a working index field for each user with repositories' ids he can access. or u can create several indexes and

Re: How do I accomplish this (semi-)complicated setup?

2009-03-25 Thread Alejandro Gonzalez
will only see data for B (and C, which he doesn't have access to.) Secondly, say we grant U2 access to B. How do we tell Solr that he can see it, then? Sorry if I'm not making much sense here, but I'm quite confused. Jesper On Wed, Mar 25, 2009 at 6:13 PM, Alejandro Gonzalez alejandrogonzalezd

Re: How do I accomplish this (semi-)complicated setup?

2009-03-25 Thread Alejandro Gonzalez
a repository is made public, the is_public property in the Solr index needs to reflect this. How can such an update be made without having to purge and re-index? Jesper On Wed, Mar 25, 2009 at 6:29 PM, Alejandro Gonzalez alejandrogonzalezd...@gmail.com wrote: ok so u can create a table