Boost at IndexTime for special docs.

2010-05-12 Thread stockii
Hello.. how can i boost docs where the field is_highlight = 1 in my DIH ?? can i put an if-block into the DIH ? i found not so much about this .. =( th -- View this message in context: http://lucene.472066.n3.nabble.com/Boost-at-IndexTime-for-special-docs-tp812277p812277.html Sent from the

Merge Search for Suggestion. Keywords and Products ?!

2010-05-11 Thread stockii
Hello. i searching for a way to merge my two different autocompletion in one request. thats what i want: - suggestion for Product Names (EdgNGram) - suggestion for keywords. (TermsComponent with Shingle) both works fone, but how can i merge this ?` is Distributet/federated search the only

Tipps for develop a own RequestHandler ?!

2010-05-11 Thread stockii
Hello. I would write an own RH for my system. is an howto in the www ? i didnt found anythin about it. can i develop in the svn-checkout and test in without building an new solr.war ? debug ? i setting up solr in eclipse like this:

Re: Merge Search for Suggestion. Keywords and Products ?!

2010-05-11 Thread stockii
hy, is something like this possible ? http://127.0.0.1:8080/solr/suggest_keyword/terms/?terms.fl=tagsterms.prefix=autwt=xmlshards=localhost/suggestq=aut -- View this message in context: http://lucene.472066.n3.nabble.com/Merge-Search-for-Suggestion-Keywords-and-Products-tp809435p810206.html

keywords, terms component for suggestion of sentences.

2010-05-10 Thread stockii
Hello. I have a little problem. i want to import an keywords-field from my database wich looks like this: Car, Radio, Car Radio, ... i import this with my DIH and i analyze with the PatternTokenizerFactory. tokenizer class=solr.PatternTokenizerFactory pattern=, * / suggestion for one word

Re: keywords, terms component for suggestion of sentences.

2010-05-10 Thread stockii
thats my http-request for terms. ... terms/?terms.fl=tagsterms.prefix=car%20radwt=xmlterms.lower=car%20radterms.lower.incl=false -- View this message in context: http://lucene.472066.n3.nabble.com/keywords-terms-component-for-suggestion-of-sentences-tp788939p788945.html Sent from the Solr -

Re: keywords, terms component for suggestion of sentences.

2010-05-10 Thread stockii
oh, nice! thx. thats what i searched for =) =) -- View this message in context: http://lucene.472066.n3.nabble.com/keywords-terms-component-for-suggestion-of-sentences-tp788939p789134.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: keywords, terms component for suggestion of sentences.

2010-05-10 Thread stockii
another question ;) how can i merge a autocompletion for keywords with productnames ? like amazon ? :P my normally a-completion works fine with the productnames. i used the edgeNGram... how it is possible that solr recognize this different. so that a productname is suggests or an keyword.

full-import cycle, period ?!

2010-05-04 Thread stockii
Hello. how often do you perform an full-import ? my full-import with DIH runs every night an every two hours runs a delta-import. is it really necessary to run an full import every night ? we have an shopsystem and i think that is necessary, to have always synchron data. we discuss here

Re: Problem in solr search

2010-04-29 Thread stockii
hey.. try the fq parameter !? ...fq=(title:A country:USA) -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-in-solr-search-tp765028p765171.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: aaaah. No response, No Result

2010-04-27 Thread stockii
oha, it works again.. but why ?? i changed my import with DIH, again back and it works fine like bevore... but whats the reaseon for this behavior ? thats the query wich worked not: query=select i.id, i.shop_id, i.name, ... FROM items_de.shop_items as i JOIN base.shops s ON s.id =

Multiple DataSources- 2 tables - 2 db's- Where ... ?!

2010-04-26 Thread stockii
Hello... i got a new problem. we put out item's table into antother database and now i need to use multiple datascource but without successed =( so.. here my data-config-xml in short ;) dataSource name=shops type=JdbcDataSource ... / entity name=active pk=id dataSource=shops query=select id

aaaah. No response, No Result

2010-04-26 Thread stockii
Hello. For few hours i changed my data-config.xml. everything worked fine, but now, one of my cores get no results. i test with http://server/solr/select/?q=*:*debugQuery=on; but i get no result. in schema Browser 800.000 Items are in my index when i search with my API i get some results

Ampersand in searchstring. how to replace ?

2010-04-19 Thread stockii
Hello.. I didnt find any about my problem... how can i replace an ampersand in indextime ? my autosuggest words are haveing ampersands. how can i replace this sign () ??? PatternReplaceCharFilterFactory ?? how is to use this Factory ? or RegexTransformer ??? thx for ya help ;) -- View

is solr ignored my filters ?

2010-04-19 Thread stockii
hey. sry for this ... stupid question ;) when i perform an import from my data is use some filters. how can i really be sure that solr used my configured filters and analyzer ? when i search in solr the result looks 100% like bevor an import. th =) -- View this message in context:

Re: is solr ignored my filters ?

2010-04-19 Thread stockii
okay. as example. i want to check if WordDelimiterFactory works correct. And i want to experimant with search in substrings with edgengram... i have the problem with that string: Kamera-Wasserwaage ... so i think solr should filter this like this. Kamera-Wasserwaage - Kamera - Wasserwaage

Re: is solr ignored my filters ?

2010-04-19 Thread stockii
oha, yes thx but we have 800 000 items ... to find the right in this way ? XD -- View this message in context: http://n3.nabble.com/is-solr-ignored-my-filters-tp729646p729749.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: is solr ignored my filters ?

2010-04-19 Thread stockii
yes, thats what im sying to my chef... but i found another solution in this moment ;) - i use EdgeNGram only for my productnames and search with an OR operator in my default text field and in the productname field. so i found all substrings :D -- View this message in context:

Re: Tree Component for much Categories.

2010-04-15 Thread stockii
can solr store a recursive search ? -- View this message in context: http://n3.nabble.com/Tree-Component-for-much-Categories-tp718910p720590.html Sent from the Solr - User mailing list archive at Nabble.com.

Tree Component for much Categories.

2010-04-14 Thread stockii
Hello aaagain ;) Im searching for the best solution to search in many categories and sub-Categories. My Setup is that. - The Client Search for something in one Category. - The client does only send the search-string and the Main-Category. - The client is an iPhone app, no website or similar.

change get to post ??

2010-04-13 Thread stockii
Hello. My client uses my autocompletion with an normal http-Request to solr. like this: http://XXX/solr/suggestpg/select/?q=harry so, when i want to search in a category with all his childs, my request is too long. How can i change from GET to POST ?? my request to solr looks like this. in

Re: change get to post ??

2010-04-13 Thread stockii
heya... childs... ^^ hehe not my schema of the database :P we have 2447 categorys and its gonna be more and more... some cat, have 300 child-categories. what do you think is the best way to solve this problem ? the porblem is that the APP (iPhone App) doesnt know all the sub-categories. so,

Re: change get to post ??

2010-04-13 Thread stockii
heya. okay NOW. i import from database with DIH. every item have cat_id, more not. for the normal search it works to use fq and Post the search. but for my autosuggestion, it didnt work, because our app does not use the autosuggestion with our API. Because of better performance ... --

Re: change get to post ??

2010-04-13 Thread stockii
what did you mean with normal queries.. our autosuggestion is on an extra core ;-) and the performance is really good. do anyone known how its the best way for search in much categories ? has solr something like an tree component or similar ? -- View this message in context:

Best Practice for import with DIH Muliple Cores - ArrayOutOfExc...

2010-04-06 Thread stockii
Hello again ;) i got new trouble with my import. a cronjob start every 2 hours an import off 4 cores. from one table. make it sense ? it doesnt think so. we have 2 servers, one playground and one Live server. so when at the weekend my imports started and i get an ArrayOutOfBoundsException.

Re: deleted segments.gen

2010-04-03 Thread stockii
i got the same problem. twice, deleting of index helped, but why happens ? solr runs and seems so all is okay. and after a time. i got the FileNotFoundException segement_XXX.gen is missing ... ^^ =( -- View this message in context:

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-26 Thread stockii
hey thx. i think the component runs so far, but i donĀ“t see what it brings me. my first autocompletion-solution was with EdgeNGram ... and its exactly the same result ... can anyone, plese show me the advantages of the Issue-1316 ?! -- View this message in context:

Tomcat 5.5 Security Constraint

2010-03-26 Thread stockii
Heya hey. i have little trouble with my tomcat and my security-constraint i have 4 cores, in these cores all should be protected via username and pwd, but not the select! my cores are so. .../solr/search/admin/ .../solr/suggest/admin/ .../solr/searchpg/admin/ .../solr/suggestpg/admin/ this

Re: Tomcat 5.5 Security Constraint

2010-03-26 Thread stockii
i try this, but with no changes =( do you have an short example for dummies like me ? ;) -- View this message in context: http://n3.nabble.com/Tomcat-5-5-Security-Constraint-tp676516p676677.html Sent from the Solr - User mailing list archive at Nabble.com.

<    1   2   3