Re: How to delete documents from a SOLR cloud / balance the shards in the cloud?

2010-09-10 Thread James Liu
Stephan and all, I am evaluating this like you are. You may want to check http://www.tomkleinpeter.com/2008/03/17/programmers-toolbox-part-3-consistent-hashing/. I would appreciate if others can shed some light on this, too. Bests, James On Fri, Sep 10, 2010 at 6:07 AM, Stephan Raemy wrote: > Hi

Re: response status: error 400

2009-10-22 Thread James liu
Are you sure the url is correct? -- regards j.L ( I live in Shanghai, China)

Re: Illegal character in xml file

2008-09-19 Thread James liu
first, u should escape some string like (code by php) > function escapeChars($string) { > $string = str_replace("&", "&", $string); $string = str_replace("<", "<", $string); $string = str_replace(">", ">", $string); $string = str_replace("'", "'", $string); $string = str_replace('"', """, $str

Re: sole 1.3: bug in phps response writer

2008-11-17 Thread James liu
i find url not same as the others -- regards j.L

Re: Newbe! Trying to run solr-1.3.0 under tomcat. Please help

2008-11-19 Thread James liu
check procedure: 1: rm -r $tomcat/webapps/* 2: rm -r $solr/data ,,,ur index data directory 3: check xml(any xml u modified) 4: start tomcat i had same error, but i forgot how to fix...so u can use my check procedure, i think it will help you i use tomcat+solr in win2003, freebsd, mac osx 10.5.5,

Re: posting error in solr

2008-11-19 Thread James liu
first u sure the xml is utf-8,,and field value is utf-8,, second u should post xml by utf-8 my advice : All encoding use utf-8... it make my solr work well,,, i use chinese -- regards j.L

Re: Query for Distributed search -

2008-11-24 Thread James liu
Up to your solr client. On Mon, Nov 24, 2008 at 1:24 PM, souravm <[EMAIL PROTECTED]> wrote: > Hi, > > Looking for some insight on distributed search. > > Say I have an index distributed in 3 boxes and the index contains time and > text data (typical log file). Each box has index for different tim

Re: Using Chinese / How to ?

2009-06-02 Thread James liu
u means how to config solr which support chinese? Update problem? On Tuesday, June 2, 2009, Fer-Bj wrote: > > I'm sending 3 files: > - schema.xml > - solrconfig.xml > - error.txt (with the error description) > > I can confirm by now that this error is due to invalid characters for the > XML form

Re: Solr multiple keyword search as google

2009-06-02 Thread James liu
U can find answer in tutorial or example On Tuesday, June 2, 2009, The Spider wrote: > > Hi, >   I am using solr nightly bind for my search. > I have to search in the location field of the table which is not my default > search field. > I will briefly explain my requirement below: > I want to ge

Re: Using Chinese / How to ?

2009-06-02 Thread James liu
1: modify ur schema.xml: like 2: add your field: 3: add your analyzer to {solr_dir}\lib\ 4: rebuild newsolr and u will find it in {solr_dir}\dist 5: follow tutorial to setup solr 6: open your browser to solr admin page, find analyzer to check analyzer, it will tell u how to ana

Re: indexing Chienese langage

2009-06-04 Thread James liu
first: u not have to restart solr,,,u can use new data to replace old data and call solr to use new search..u can find something in shell script which with solr two: u not have to restart solr,,,just keep id is same..example: old id:1,title:hi, new id:1,title:welcome,,just index new data,,it will

Re: indexing Chienese langage

2009-06-04 Thread James liu
On Mon, Feb 16, 2009 at 4:30 PM, revathy arun wrote: > Hi, > > When I index chinese content using chinese tokenizer and analyzer in solr > 1.3 ,some of the chinese text files are getting indexed but others are not. > are u sure ur analyzer can do it good? if not sure, u can use analzyer link in

Re: timeouts

2009-06-04 Thread James liu
*Collins: *i don't know what u wanna say? -- regards j.L ( I live in Shanghai, China)

does solr support summary

2009-06-10 Thread James liu
if user use keyword to search and get summary(auto generated by keyword)...like this doc filed: id, text id: 001 text: > Open source is a development method for software that harnesses the power > of distributed peer review and transparency of process. The promise of open > source is better qual

IndexMerge not found

2009-07-01 Thread James liu
i try http://wiki.apache.org/solr/MergingSolrIndexes system: win2003, jdk 1.6 Error information: > Caused by: java.lang.ClassNotFoundException: > org.apache.lucene.misc.IndexMergeTo > ol > at java.net.URLClassLoader$1.run(Unknown Source) > at java.security.AccessController.doPriv

Re: IndexMerge not found

2009-07-01 Thread James liu
i use lucene-core-2.9-dev.jar, lucene-misc-2.9-dev.jar On Thu, Jul 2, 2009 at 2:02 PM, James liu wrote: > i try http://wiki.apache.org/solr/MergingSolrIndexes > > system: win2003, jdk 1.6 > > Error information: > >> Caused by: java.lan

Is it problem? I use solr to search and index is made by lucene. (not EmbeddedSolrServer(wiki is old))

2009-07-02 Thread James liu
I use solr to search and index is made by lucene. (not EmbeddedSolrServer(wiki is old)) Is it problem when i use solr to search? which the difference between Index(made by lucene and solr)? thks -- regards j.L ( I live in Shanghai, China)

Re: Is it problem? I use solr to search and index is made by lucene. (not EmbeddedSolrServer(wiki is old))

2009-07-02 Thread James liu
solr have much fieldtype, like: integer,long, double, sint, sfloat, tint,tfloat,,and more. but lucene not fieldtype,,just name and value, value only string. so i not sure is it a problem when i use solr to search( index made by lucene). -- regards j.L ( I live in Shanghai, China)

how to stress test solr

2010-02-03 Thread James liu
before stressing test, Should i close SolrCache? which tool u use? How to do stress test correctly? Any pointers? -- regards j.L ( I live in Shanghai, China)

Re: multiple slaves on the same box

2007-07-17 Thread James liu
2007/7/18, Ryan McKinley <[EMAIL PROTECTED]>: Xuesong Luo wrote: > Hi, there, > We have one master server and multiple slave servers. The multiple slave > servers can be run either on the same box or different boxes. For > slaves on the same box, is there any best practice that they should use

solr index problem

2007-07-17 Thread James liu
when i index 1.7m docs and 4k-5k per doc. OutOfMemory happen when it finish index ~1.13m docs I just restart tomcat , delete all lock and restart do index. No error or warning infor until it finish. anyone know why? or have the same error? -- regards jl

Re: solr index problem

2007-07-18 Thread James liu
I correct it,,,i index 17M docs. not 1.7M,,,so OutOfMemory happen when it finish index ~11.3m docs It is new index. i think it maybe the reason: On 7/18/07, Otis Gospodnetic <[EMAIL PROTECTED]> wrote: > Why? Too small of a Java heap. :) > Increase the size of the Java heap and lower the maxBu

why store field will be analyzed?

2007-07-31 Thread James liu
fieldset "topic" indexed='false' and stored='true' i don't know why it will be analyzed? now i wanna it only store not analyzed,,,how can i do? -- regards jl

what's the difference between lucene2.1 and solr1.2

2007-08-07 Thread James liu
if i wanna calc it by my method, something i should notice ? anyone did it? -- regards jl

Re: what's the difference between lucene2.1 and solr1.2

2007-08-08 Thread James liu
Lucene is a search library, Solr is a search server that uses > Lucene. > > Cheers, > Grant > > On Aug 8, 2007, at 2:57 AM, James liu wrote: > > > if i wanna calc it by my method, something i should notice ? > > > > anyone did it? > > > > > &g

Re: Multiple indexes

2007-08-29 Thread James liu
what is the limits for Lucene and Solr. 100m, 1000m, 5000m or other number docs? 2007/8/24, Walter Underwood <[EMAIL PROTECTED]>: > > It should work fine to index them and search them. 13 million docs is > not even close to the limits for Lucene and Solr. Have you had problems? > > wunder > > On

Re: Multiple indexes

2007-08-29 Thread James liu
Does it affect with doc size? for example 2 billion docs, 10k doc2 billion docs, but doc size is 10m. 2007/8/30, Mike Klaas <[EMAIL PROTECTED]>: > > 2 billion docs (signed int). > > On 29-Aug-07, at 6:24 PM, James liu wrote: > > > what is the limits for Lucene an

Re: Multiple indexes

2007-08-30 Thread James liu
OK...I see...thk u ,mike. 2007/8/31, Mike Klaas <[EMAIL PROTECTED]>: > > > On 29-Aug-07, at 10:21 PM, James liu wrote: > > > Does it affect with doc size? > > > > for example 2 billion docs, 10k doc2 billion docs, but doc size > > is 10m. > >

How to patch

2007-09-09 Thread James liu
i wanna try patch: https://issues.apache.org/jira/browse/SOLR-139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel and i download solr1.2 release patch < SOLR-269*.pach(when in '/tmp/apache-solr-1.2.0/src/test/org/apache/solr/update' ) it show me |Index: src/test/org/apache

Re: How to patch

2007-09-09 Thread James liu
thks ,ryan. 2007/9/10, Ryan McKinley <[EMAIL PROTECTED]>: > > James liu wrote: > > i wanna try patch: > > > https://issues.apache.org/jira/browse/SOLR-139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel > > > > and i download solr1.2 r

real time search

2007-09-23 Thread James liu
i wanna do it. Maybe someone did it, if so, give me some tips. thks -- regards jl

Re: real time search

2007-09-24 Thread James liu
to see them immediately, or just the current user? > > > > We can better help you if you give us more details on what you are > > trying to accomplish. > > > > Thanks, > > Grant > > > > On Sep 23, 2007, at 10:38 AM, Jam

Re: real time search

2007-09-24 Thread James liu
to accomplish. > > Thanks, > Grant > > On Sep 23, 2007, at 10:38 AM, James liu wrote: > > > i wanna do it. > > > > Maybe someone did it, if so, give me some tips. > > > > thks > > > > -- > > regards > > jl > > ---

can solr do it?

2007-09-24 Thread James liu
if use multi solr with one index, it will cache individually. so i think can it share their cache.(they have same config) -- regards jl

anyone can send me jetty-plus

2007-09-26 Thread James liu
i can't download it from http://jetty.mortbay.org/jetty5/plus/index.html -- regards jl

Re: Availability Issues

2007-10-08 Thread James liu
* * *i think text not need "stored='true'" unless u will show it.(it will help u decrease index size and not affect search )* *index and search use same box? if it is true, u should moniter search response time when indexing.(include CPU, RAM change)* *i have similar problem and i increase JVM s

index become bigger and the only way seems to add hardware, another way?

2007-10-09 Thread James liu
i just wanna know is it exist which can decrease index size,,not by increasing hardware or optimizing lucene params. -- regards jl

Re: index become bigger and the only way seems to add hardware, another way?

2007-10-09 Thread James liu
there. > > Otis > > -- > > Lucene - Solr - Nutch - Consulting -- http://sematext.com/ > > > > > - Original Message > From: James liu <[EMAIL PROTECTED]> > To: solr-user@lucene.apache.org > Sent: Tuesday, October 9, 2007 11:15:56 PM > Subject: i

random lost segments* files,,

2007-10-14 Thread James liu
i have 40 instances,,,one instance lost segments* file(happen after commit and optimize) anyone have similar problem? can i fix this problem? can i recovery this instance data? -- regards jl

Re: random lost segments* files,,

2007-10-14 Thread James liu
i find it happen when it do commit. i use solr 1.2 release. i use crontab to do index work. 2007/10/15, James liu <[EMAIL PROTECTED]>: > > i have 40 instances,,,one instance lost segments* file(happen after commit > and optimize) > > anyone have similar problem? >

Re: SOLR 1.3 Release?

2007-10-25 Thread James liu
where i can read 1.3 new features? 2007/10/26, Venkatraman S <[EMAIL PROTECTED]>: > > On 10/26/07, Mike Klaas <[EMAIL PROTECTED]> wrote: > > > > If we did a 1.2.x, it shoud (imo) contain no new features, only > > important bugfixes. > > > I have been having a look at the trunk for quite sometime n

Re: get all query not working

2007-10-31 Thread James liu
if u rebuild solr , safe method is rm -r *tomcat*/webapps/*. 2007/11/1, Chris Hostetter <[EMAIL PROTECTED]>: > > > : Is there an easy to find out which version of solr is running. I > installed > : solr 1.2 and set up an instance using Tomcat. It was successful before. > > FYI: starting a while b

how to use PHP AND PHPS?

2007-11-05 Thread James liu
i find they all return string http://localhost:8080/solr/select/?q=solr&version=2.2&start=0&rows=10&indent=on&wt=php '; var_dump(file_get_contents($url); ?> -- regards jl

Re: how to use PHP AND PHPS?

2007-11-05 Thread James liu
i know it...but u try it,,u will find simlar question. On 11/5/07, Robert Young <[EMAIL PROTECTED]> wrote: > > I would imagine you have to unserialize > > On 11/5/07, James liu <[EMAIL PROTECTED]> wrote: > > i find they all return string > > > > >

Re: how to use PHP AND PHPS?

2007-11-05 Thread James liu
p($a); $a = unserialize($a); echo 'after unserialize...'; var_dump($a); ?>* * On 11/6/07, Stu Hood <[EMAIL PROTECTED]> wrote: > > Did you enable the PHP serialized response writer in your solrconfig.xml? > It is not enabled by default. > > Thanks, > Stu > >

Re: how to use PHP AND PHPS?

2007-11-06 Thread James liu
t;2";s:2:"wt";s:4:"phps";s:4:"rows";s:2:"10";s:7:"version";s:3:" > 2.2";}} > two var_dump result: bool(false) On Nov 6, 2007 10:36 PM, Dave Lewis <[EMAIL PROTECTED]> wrote: > What are the results of the two var_dumps?

Re: how to use PHP AND PHPS?

2007-11-06 Thread James liu
afternoon,,i will update svn...and try the newest... On Nov 7, 2007 11:23 AM, Dave Lewis <[EMAIL PROTECTED]> wrote: > > On Nov 6, 2007, at 8:10 PM, James liu wrote: > > > first var_dump result(part not all): > > > > string(50506) > >> "a:2:{

Re: how to use PHP AND PHPS?

2007-11-06 Thread James liu
same answer. On Nov 7, 2007 11:41 AM, James liu <[EMAIL PROTECTED]> wrote: > afternoon,,i will update svn...and try the newest... > > > > > On Nov 7, 2007 11:23 AM, Dave Lewis <[EMAIL PROTECTED]> wrote: > > > > > On Nov 6, 2007, at 8:10 PM, James li

Re: how to use PHP AND PHPS?

2007-11-06 Thread James liu
i just decrease answer information...and u will see my result(full, not part) *before unserialize* > string(433) > "a:2:{s:14:"responseHeader";a:3:{s:6:"status";i:0;s:5:"QTime";i:0;s:6:"params";a:7:{s:2:"fl";s:5:"Title";s:6:"indent";s:2:"on";s:5:"start";s:1:"0";s:1:"q";s:1:"2";s:2:"wt";s:4:"ph

Re: how to use PHP AND PHPS?

2007-11-07 Thread James liu
hmm i find error,,,that is my error not about php and phps .. i use old config to testso config have a problem.. that is Title i use double as its type...it should use text. On Nov 8, 2007 10:29 AM, James liu <[EMAIL PROTECTED]> wrote: > php now is ok.. > >

Re: how to use PHP AND PHPS?

2007-11-07 Thread James liu
;q";s:1:"2";s:2:"wt";s:4:"phps";s:4:"rows";a:2:{i:0;s:1:"2";i:1;s:2:"10";}s:7:"version";s:3:" > 2.2";}}s:8:"response";a:3:{s:8:"numFound";i:28;s:5:"start";i:0;s:4:"docs";a:2:{i

Re: how to use PHP AND PHPS?

2007-11-07 Thread James liu
Thks everybody who give me help. especial Dave, thk u. On Nov 8, 2007 11:21 AM, James liu <[EMAIL PROTECTED]> wrote: > hmm > > i find error,,,that is my error not about php and phps .. > > i use old config to testso config have a problem.. > > that is Title i

Re: Does SOLR supports multiple instances within the same webapplication?

2007-11-12 Thread James liu
if I understand correct,,u just do it like that:(i use php) $data1 = getDataFromInstance1($url); $data2 = getDataFromInstance2($url); it just have multi solr Instance. and getData from the distance. On Nov 12, 2007 11:15 PM, Dilip.TS <[EMAIL PROTECTED]> wrote: > Hello, > > Does SOLR supports

Re: 2Gb process on 32 bits

2007-11-12 Thread James liu
if u use tomcat,,,it default port: 8080 and other default port. so u just use other tomcat which use 8181 and other port...(i remember u should modify three port(one tomcat) ) I used to have four tomcat in One SERVER. On Nov 9, 2007 7:39 AM, Isart Montane <[EMAIL PROTECTED]> wrote: > Hi all, >

Re: CJK Analyzers for Solr

2007-11-26 Thread James liu
I don't think NGram is good method for Chinese. CJKAnalyzer of Lucene is 2-Gram. Eswar K: if it is chinese analyzer,,i recommend hylanda(www.hylanda.com),,,it is the best chinese analyzer and it not free. if u wanna free chinese analyzer, maybe u can try je-analyzer. it have some problem when

Re: CJK Analyzers for Solr

2007-11-26 Thread James liu
if ur analyzer is standard, u can try use tokenize.(u can find the answer from analyzer source code and schema.xml) On Nov 27, 2007 9:39 AM, zx zhang <[EMAIL PROTECTED]> wrote: > lance, > > The following is a instance schema fieldtype using solr1.2 and CJK > package. > And it works. As you said,

Re: CJK Analyzers for Solr

2007-11-26 Thread James liu
lly be indexing millions of documents. > > James, > > We would have a look at hylanda too. What abt japanese and korean > analyzers, > any recommendations? > > - Eswar > > On Nov 27, 2007 7:21 AM, James liu <[EMAIL PROTECTED]> wrote: > > > I don'

Re: CJK Analyzers for Solr

2007-12-03 Thread James liu
ecific reason why the CJK analyzers in Solr > >were > chosen to be >> n-gram based instead of > >it being a morphological analyzer which is > > >kind of >> implemented in Google as it > >considered to be more effective than the > > >n-gram >> ones? &g

i can't start http://localhost:8983/solr/admin/

2006-08-26 Thread James liu
i use winxp java1.5. i started "[EMAIL PROTECTED]:~/tmp/solr/solr-nightly/example$ java -jar start.jar", and everything is ok. but i wanna open http://localhost:8983/solr/admin/,,,firefox display nothing and gcc shows long error and warning. my java setting is: JAVA_HOME:c:\program files\java\j

Re: i can't start http://localhost:8983/solr/admin/

2006-08-26 Thread James liu
admin\index_jsp.java 2006/8/27, WHIRLYCOTT <[EMAIL PROTECTED]>: What is the error that you are getting? And why do you think that it's coming from gcc? phil. On Aug 26, 2006, at 10:26 PM, James liu wrote: > but i wanna open http://localhost:8983/solr/admin/,,,firefox > dis

Re: i can't start http://localhost:8983/solr/admin/

2006-08-26 Thread James liu
... thk u. 2006/8/27, WHIRLYCOTT <[EMAIL PROTECTED]>: I see. You need a JDK, not a JRE. phil. On Aug 26, 2006, at 10:40 PM, James liu wrote: > sorry.spell error. i just mean i find error information in cygwin. > > like that: > > "Generated

about analyzer and index

2006-08-27 Thread James liu
lucene have ChineseAnalyzer and CJKAnalyzer,,,so i can search chinese keyword with it. solr have it? if not, how can i add it? if i use php+mysql build data.xml,,,use post.sh data.xml? it is the only way to index? i remember i must use same analyzer to index and search when i use lucene2.0 ,

Re: Simple Faceted Searching out of the box

2006-09-09 Thread James liu
Good. Thk u,Hoss. 2006/9/9, Tim Archambault <[EMAIL PROTECTED]>: Hoss, What is "faceted browsing"? Maybe an example of a site interface that is using it would be good. Dumb question, I know. On 9/8/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > > Hey everybody, I just wanted to officiall

Re: Got it working! And some questions

2006-09-09 Thread James liu
- Is the solr php in the wiki working out of the box for anyone? show your php.ini. did you performance your php? 2006/9/10, Brian Lucas <[EMAIL PROTECTED]>: Hi Michael, I apologize for the lack of testing on the SolPHP. I had to "strip" it down significantly to turn it into a general clas

i wanna setup solr project,,but something i don't know

2006-09-16 Thread James liu
if i use Jetty , how i make my project? for example, make project directory and sub directory which include filesi don't find from wiki. where i place - solrconfig.xml - SolrConfigXml - schema.xml - S

does solr know classpath

2006-09-16 Thread James liu
i set classpath where i put lucene-analyzers-2.0.0.jar...i can use it. but solr not find it.. where i should put it in?

solrphp+ jetty,,,anyone can success?

2006-09-16 Thread James liu
i use xml which i write by myself to sendUpdate,,,but error show like: "string(1536) "ERROR:unknown field 'pname' org.xmlpull.v1.XmlPullParserException: expected START_TAG or END_TAG not END_DOCUMENT (position: END_DOCUMENT seen ...\r\n... @20:7) at org.xmlpull.mxp1.MXParser.nextTag(MXParser.java:

Re: does solr know classpath

2006-09-16 Thread James liu
i use jetty,,,and put it into solr-nightly\lib with lucene-snowball-nightly.jar and lucene-core-nightly.jar... 2006/9/17, Simon Willnauer <[EMAIL PROTECTED]>: /solrwebapp/WEB-INF/lib to point out one solution best regards simon On 9/16/06, James liu <[EMAIL PROTECTED]> wr

Re: i wanna setup solr project,,but something i don't know

2006-09-16 Thread James liu
u r smart boy. i get the answer. thk u reply 2006/9/17, Chris Hostetter <[EMAIL PROTECTED]>: : project? for example, make project directory and sub directory which include : filesi don't find from wiki. : : where i place :solrconfig.xml - SolrConfigXml< http://wiki.apache.org/solr/Sol

how to check index's data

2006-09-16 Thread James liu
lucene's index can be checked by lukeall.jar; how to check solr's index?

Re: how to check index's data

2006-09-16 Thread James liu
i think you misunderstand. i wanna check indexed data,,,not how to index. because my testxml seems to be indexed ,,,but i can't find it by http://localhost:8080/solr/admin 2006/9/17, Mike Klaas <[EMAIL PROTECTED]>: On 9/16/06, James liu <[EMAIL PROTECTED]> wrote: > l

Re: how to check index's data

2006-09-16 Thread James liu
1: my lucene index will have _1.cfs,deletable,segmentsand solr just only segments,,,am i wrong? luke can't open solr's index,and can open lucene's index. 2: i m sure commit after adddocs. 2006/9/17, Chris Hostetter <[EMAIL PROTECTED]>: : : i think you misunderstand. : : i wanna check i

Re: how to check index's data

2006-09-16 Thread James liu
i just modify addIndex if i index data,i can see "updated"... function addIndex($resultarray) { $dom_string = ' 111 jl jldepart jlcompany 112 ben bendepart bencompany 113 gf gfdepart gfcompany '; if ($dom_string) {

Re: how to check index's data

2006-09-17 Thread James liu
I find solrphp is problem. i use post.sh,,it can index data and i can use luke

tomcat install

2006-09-17 Thread James liu
tomcat 5.5 win2003,,i can find http://localhost:8080,,it is ok. i copy solr-nightly.war to "c:\tomcat5.5\webapps\solr.war" i start tomcat,,it auto generate solr directory in "c:\tomcat5.5\webapps\solr" http://localhost:8080/solr/admin/,,,it show me error information: HTTP Status 500 - type Ex

Re: tomcat install

2006-09-17 Thread James liu
r\conf . The error you are getting is that tomcat cann't find the solr configuration directory. Hope you get it running. Kind regards, Nick On 9/17/06, James liu <[EMAIL PROTECTED]> wrote: > > tomcat 5.5 win2003,,i can find http://localhost:8080,,it is ok. > > i copy solr

Re: tomcat install

2006-09-18 Thread James liu
, Nick On 9/18/06, James liu <[EMAIL PROTECTED]> wrote: > > thk Nick. > > i do you tell me and i can see admin page. > > but when i click search ,,,error information: > > java.lang.NullPointerException > at org.apache.solr.searc

about sortMissingLast and sortMissingFirst

2006-09-18 Thread James liu
i look expression about them in schema.xml. but i m not clear. My understand: if sortMissingLast is true do last in descending sort. for example: field name : pname, if sortMissingLast is true, pname will be sorted desc and we can't find result with pname, only other field information. am i w

no example to CollectionDistribution?

2006-09-18 Thread James liu
not find example in wiki. anyone know? -- regards jl

Re: no example to CollectionDistribution?

2006-09-18 Thread James liu
maybe i should get cron through cygwin.. my system is win2003,not unix. today i try ./snappuller,,,but it seems wrong and i set master port, directory,snap directory tomorrow i will try again. 2006/9/18, Chris Hostetter <[EMAIL PROTECTED]>: : Subject: no example to CollectionDistribut

Re: tomcat install

2006-09-18 Thread James liu
ile contains also the lucene code along with your analyzers This is how I did it, don't know if this is the right or the easiest way to do it. Kind regards, Nick On 9/18/06, James liu <[EMAIL PROTECTED]> wrote: > > Hi Nick, > > It is very funny. when i reboot my pc,it is

Re: tomcat install

2006-09-19 Thread James liu
today not Ok。i check source of cjk: CJKAnalyzer.java and CJKTokenizer.java (these from lucene 2.0 source code)and your code,,,i write CJKJLFilterFactory.java and CJKJLTokenizerFactory.javaant is ok.i copy new solr.war to tomcat's webappsand modify schema.xml use admin page, i use http://localh

wana use CJKAnalyzer

2006-09-19 Thread James liu
My step to support CJK...:1:add lucene-analyzers-2.0.0.jar to "C:\cygwin\tmp\solr-nightly\lib"2:use cmd, "cd C:\cygwin\tmp\solr-nightly","ant dist"3:copy "C:\cygwin\tmp\solr-nightly\dist\solr- 1.0.war" to "C:\cygwin\tmp\solr-nightly\example\webapps\solr.war"4:modify schema(conf/schema.conf), like

Re: no example to CollectionDistribution?

2006-09-19 Thread James liu
i see,thk u. 2006/9/20, Chris Hostetter <[EMAIL PROTECTED]>: : maybe i should get cron through cygwin.. : : my system is win2003,not unix. : : today i try ./snappuller,,,but it seems wrong and i set master port, : directory,snap directory The CollectionDistribution scripts may not work well o

Re: tomcat install

2006-09-19 Thread James liu
i'd like to hear "I would start by trying to use the CJKAnalyzer as is with the syntax,described above." if need tester, call me. 2006/9/20, Chris Hostetter <[EMAIL PROTECTED]>: : I have went through my archives and I have found that people also have used : something similar to: : : :

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
2006/9/20, Yonik Seeley <[EMAIL PROTECTED]>: On 9/20/06, James liu <[EMAIL PROTECTED]> wrote: > My step to support CJK...: > 1:add lucene-analyzers-2.0.0.jar to > "C:\cygwin\tmp\solr-nightly\lib" > 2:use cmd, "cd C:\cygwin\tmp\solr-nightly","an

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
i m java newer. so i print these steps. solr tutorial i test is ok. anything you wanna know, mail me.

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
attachements:  schema.xml2006/9/20, James liu <[EMAIL PROTECTED]>: i m java newer. so i print these steps.solr tutorial i test is ok.anything you wanna know, mail me.-- regardsjl id content

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
to mike: " Are you testing the same field to which you are adding the analyzer? I noticed in another mail that you added this to the "text_lu" field type--the solr example uses "text", as I recall." now my schema.xml: 111 姓名是刘平 112 姓名是小王 113 老婆不在家 but i m f

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
Hoss, thk for ur help 2006/9/21, Chris Hostetter <[EMAIL PROTECTED]>: : 6:start jetty,java -jar start.jar : 7:no error. : 8: http://localhost:8983/solr/admin,,,i click analyzer link,,,and try : test analyzer chinese word,but nothing happend. ...i don't know much about non latin characters bu

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
sorry,,it is wrong... my schema.xml id content 在06-9-21,James liu <[EMAIL PROTECTED]> 写道: to mike: " Are you testing the same field to which you are adding the analyzer? I noticed in another mail that you added this to the "text_lu&

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
i use lukeall.jar to check indexdata. u can find picture from http://www.flickr.com/photos/[EMAIL PROTECTED]/?saved=1 solr.jpg is i use lukeall.jar to check solr's index data. lucene.jpg is i use lukeall.jar to check lucene's index data. now i use lucene is ok.

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
i dont know it is import i add junit when i use ant dist,,,it show me error information : not found junit,,,so i download and add it. Is it problem about CJKAnalyzer?

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
i recompile it. when i ant dist...cmd shows some api is old and uncheck... Is it problem? my java version you can find http://www.flickr.com/photos/[EMAIL PROTECTED]/?saved=1 2006/9/21, James liu <[EMAIL PROTECTED]>: i dont know it is import i add junit when i use ant dist,,,i

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
thk Hoss,Nick Snels,Koji,Mike and everybody who helped me and wanna help me.. i can use solr with Chinese Word.

Re: wana use CJKAnalyzer

2006-09-20 Thread James liu
i just wanna say: no your help,maybe i will give up.thk u again. http://www.flickr.com/photos/[EMAIL PROTECTED]/248815068/ 2006/9/21, James liu <[EMAIL PROTECTED]>: thk Hoss,Nick Snels,Koji,Mike and everybody who helped me and wanna help me.. i can use solr with Chines

Re: wana use CJKAnalyzer

2006-09-21 Thread James liu
2006/9/22, Chris Hostetter <[EMAIL PROTECTED]>: : i just wanna say: no your help,maybe i will give up.thk u again. : : http://www.flickr.com/photos/[EMAIL PROTECTED]/248815068/ : > thk Hoss,Nick Snels,Koji,Mike and everybody who helped me and wanna help : > me.. : > : > i can use solr wit

Re: wana use CJKAnalyzer

2006-09-22 Thread James liu
2006/9/23, Walter Underwood <[EMAIL PROTECTED]>: On 9/21/06 5:37 PM, "James liu" <[EMAIL PROTECTED]> wrote:> Yes,it working. the root of my problem is xml muse be encoded by utf-8.> if use php,it not about www browser. just notice that > curl header information mus

Re: wana use CJKAnalyzer

2006-09-25 Thread James liu
really should. Maybe a 400 Bad Request response with a text/plain body showing the error message. after i fixed "more On 9/22/06 6:24 PM, "James liu" <[EMAIL PROTECTED]> wrote: > > 2006/9/23, Walter Underwood <[EMAIL PROTECTED]>: >> On 9/21/06 5:37 PM

SolrDistribution is tested by FreeBSD?

2006-12-21 Thread James liu
i use fb 6.1 when i use # sh rsyncd-enable it show me: cd: can't cd to rsyncd-enable/.. .: Can't open /usr/local/www/data/solr/example/solr/bin/bin/scripts-util: No such file or directory -- regards jl

  1   2   3   >