Re: data Model/UML diagrams/Class diagrams.

2012-07-05 Thread prasad deshpande
Is there any who can help me?

On Thu, Jul 5, 2012 at 10:10 AM, prasad deshpande <
prasad.deshpand...@gmail.com> wrote:

> I would like to understand how solr/lucene/Tika frameworks designed. Where
> would I get the class diagram/UML diagrams to better understand the
> solr/lucene/Tika.
> I have the source code for all of them.
>
>
> Thanks,
> Prasad
>


Re: Does solr supports indexing of files other than UTF-8

2011-01-28 Thread prasad deshpande
Thanks paul.

However I want to support local encoding files to be indexed. How would I
achieve it?

On Thu, Jan 27, 2011 at 2:46 PM, Paul Libbrecht  wrote:

> At least in java utf-8 transcoding is done on a stream basis. No issue
> there.
>
> paul
>
>
> Le 27 janv. 2011 à 09:51, prasad deshpande a écrit :
>
> > The size of docs can be huge, like suppose there are 800MB pdf file to
> index
> > it I need to translate it in UTF-8 and then send this file to index. Now
> > suppose there can be any number of clients who can upload file. at that
> time
> > it will affect performance. and already our product support localization
> > with local encoding.
> >
> > Thanks,
> > Prasad
> >
> > On Thu, Jan 27, 2011 at 2:04 PM, Paul Libbrecht 
> wrote:
> >
> >> Why is converting documents to utf-8 not feasible?
> >> Nowadays any platform offers such services.
> >>
> >> Can you give a detailed failure description (maybe with the URL to a
> sample
> >> document you post)?
> >>
> >> paul
> >>
> >>
> >> Le 27 janv. 2011 à 07:31, prasad deshpande a écrit :
> >>> I am able to successfully index/search non-Engilsh data(like Hebrew,
> >>> Japnese) which was encoded in UTF-8.
> >>> However, When I tried to index data which was encoded in local encoding
> >> like
> >>> Big5 for Japanese I could not see the desired results.
> >>> The contents after indexing looked garbled for Big5 encoded document
> when
> >> I
> >>> searched for all indexed documents.
> >>>
> >>> Converting a complete document in UTF-8 is not feasible.
> >>> I am not very clear about how Solr support these localizations with
> other
> >>> than UTF-8 encoding.
> >>>
> >>>
> >>> I verified below links
> >>> 1. http://lucene.apache.org/java/3_0_3/api/all/index.html
> >>> 2.  http://wiki.apache.org/solr/LanguageAnalysis
> >>>
> >>> Thanks and Regards,
> >>> Prasad
> >>
> >>
>
>


Re: Does solr supports indexing of files other than UTF-8

2011-01-27 Thread prasad deshpande
The size of docs can be huge, like suppose there are 800MB pdf file to index
it I need to translate it in UTF-8 and then send this file to index. Now
suppose there can be any number of clients who can upload file. at that time
it will affect performance. and already our product support localization
with local encoding.

Thanks,
Prasad

On Thu, Jan 27, 2011 at 2:04 PM, Paul Libbrecht  wrote:

> Why is converting documents to utf-8 not feasible?
> Nowadays any platform offers such services.
>
> Can you give a detailed failure description (maybe with the URL to a sample
> document you post)?
>
> paul
>
>
> Le 27 janv. 2011 à 07:31, prasad deshpande a écrit :
> > I am able to successfully index/search non-Engilsh data(like Hebrew,
> > Japnese) which was encoded in UTF-8.
> > However, When I tried to index data which was encoded in local encoding
> like
> > Big5 for Japanese I could not see the desired results.
> > The contents after indexing looked garbled for Big5 encoded document when
> I
> > searched for all indexed documents.
> >
> > Converting a complete document in UTF-8 is not feasible.
> > I am not very clear about how Solr support these localizations with other
> > than UTF-8 encoding.
> >
> >
> > I verified below links
> > 1. http://lucene.apache.org/java/3_0_3/api/all/index.html
> > 2.  http://wiki.apache.org/solr/LanguageAnalysis
> >
> > Thanks and Regards,
> > Prasad
>
>


Does solr supports indexing of files other than UTF-8

2011-01-26 Thread prasad deshpande
Hello,


I am able to successfully index/search non-Engilsh data(like Hebrew,
Japnese) which was encoded in UTF-8.
However, When I tried to index data which was encoded in local encoding like
Big5 for Japanese I could not see the desired results.
The contents after indexing looked garbled for Big5 encoded document when I
searched for all indexed documents.

Converting a complete document in UTF-8 is not feasible.
I am not very clear about how Solr support these localizations with other
than UTF-8 encoding.


I verified below links
1. http://lucene.apache.org/java/3_0_3/api/all/index.html
2.  http://wiki.apache.org/solr/LanguageAnalysis

Thanks and Regards,
Prasad


Does Solr supports indexing & search for Hebrew.

2011-01-18 Thread prasad deshpande
Hello,

With reference to below links I haven't found Hebrew support in Solr.

http://wiki.apache.org/solr/LanguageAnalysis

http://lucene.apache.org/java/3_0_3/api/all/index.html

If I want to index and search Hebrew files/data then how would I achieve
this?

Thanks,
Prasad


Re: How to integrate Solr with C/CPP client

2011-01-05 Thread prasad deshpande
Thank you for your quick reply.

How to use cURL to send and get request to the Solr?
So that I can integrate solr with C/CPP client.

Thanks and Regards,
Prasad

On Wed, Jan 5, 2011 at 10:26 PM, Juan Manuel Alvarez wrote:

> I use the POCO C++ library (http://pocoproject.org/) to send
> HTML requests to Solr and to parse the XML response.
>
> Cheers!
> Juan M.
>
> On Wed, Jan 5, 2011 at 1:28 AM, Gora Mohanty  wrote:
> > On Wed, Jan 5, 2011 at 9:54 AM, prasad deshpande
> >  wrote:
> >> It seems Solr/Lucene is completely developed in Java.
> >> I want to integrate Solr with C/CPP client. Is it possible? If yes, how?
> > []
> >
> > Lucene has a C port called Lucy ( http://incubator.apache.org/lucy/ )
> >
> > Solr can be accessed as a web service, so it is possible to use a
> > C/C++ client.
> >
> > Regards,
> > Gora
> >
>


How to integrate Solr with C/CPP client

2011-01-04 Thread prasad deshpande
It seems Solr/Lucene is completely developed in Java.
I want to integrate Solr with C/CPP client. Is it possible? If yes, how?

Thanks;
Prasad


Re: Does Solr/Lucene support Localization/Internationalization

2011-01-04 Thread prasad deshpande
My Primary interest is in Solr.

Thanks,
Prasad

On Tue, Jan 4, 2011 at 6:25 PM, Erick Erickson wrote:

> First, it's no big deal, but it's better to just post to one list only.
> I'm not sure whether your primary interest is in Solr or Lucene
>
> See: http://lucene.apache.org/java/3_0_3/api/all/index.html
> <http://lucene.apache.org/java/3_0_3/api/all/index.html>for a list of
> Lucene
> Analyzers for various languages.
>
> See:  http://wiki.apache.org/solr/LanguageAnalysis
> for Solr language support
>
> Best
> Erick
>
> On Tue, Jan 4, 2011 at 7:43 AM, prasad deshpande <
> prasad.deshpand...@gmail.com> wrote:
>
> > >
> > > Hello,
> > >
> > > I am completely new for Solr/lucene. I am going through documents
> > provided
> > > by Apache.
> > > Can any one tell me that Lucene/Solr supports indexing and searching
> for
> > > other than English language?
> > >
> > > It seems Solr/Lucene is completely developed in Java.
> > > I want to integrate Solr/Lucene with C/CPP client. Is it possible? If
> > yes,
> > > how?
> > >
> > > Thanks and Regards,
> > > Prasad
> > >
> >
>


Does Solr/Lucene support Localization/Internationalization

2011-01-04 Thread prasad deshpande
>
> Hello,
>
> I am completely new for Solr/lucene. I am going through documents provided
> by Apache.
> Can any one tell me that Lucene/Solr supports indexing and searching for
> other than English language?
>
> It seems Solr/Lucene is completely developed in Java.
> I want to integrate Solr/Lucene with C/CPP client. Is it possible? If yes,
> how?
>
> Thanks and Regards,
> Prasad
>