[jira] Created: (SOLR-1040) XPathEntityProcessor fails with an xpath like /feed/entry/li...@type='text/html']/@href

2009-02-26 Thread Noble Paul (JIRA)
XPathEntityProcessor fails with an xpath like /feed/entry/li...@type='text/html']/@href --- Key: SOLR-1040 URL: https://issues.apache.org/jira/browse/SOLR-1040

[jira] Updated: (SOLR-1040) XPathEntityProcessor fails with an xpath like /feed/entry/li...@type='text/html']/@href

2009-02-26 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noble Paul updated SOLR-1040: - Attachment: SOLR-1040.patch if there are single quotes they must be escaped XPathEntityProcessor fails

Stax-API jar

2009-02-26 Thread Tricia Williams
Hi Folks, I think I've identified a bug in stax-api-1.0.jar. Specifically javax.xml.stream.XMLStreamReader::getTextStart(). I'm just wonder who owns/manages the source of the implementation that Solr uses? https://stax-utils.dev.java.net/ gives four implementations, I just need to know

Re: Stax-API jar

2009-02-26 Thread Shalin Shekhar Mangar
On Thu, Feb 26, 2009 at 5:24 PM, Tricia Williams williams.tri...@gmail.comwrote: Hi Folks, I think I've identified a bug in stax-api-1.0.jar. Specifically javax.xml.stream.XMLStreamReader::getTextStart(). I'm just wonder who owns/manages the source of the implementation that Solr uses?

[jira] Assigned: (SOLR-1040) XPathEntityProcessor fails with an xpath like /feed/entry/li...@type='text/html']/@href

2009-02-26 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar reassigned SOLR-1040: --- Assignee: Shalin Shekhar Mangar XPathEntityProcessor fails with an xpath

Re: Stax-API jar

2009-02-26 Thread Ryan McKinley
also note -- if you are using java6, you can remove the two stax jars and use the default implementation. On Feb 26, 2009, at 6:54 AM, Tricia Williams wrote: Hi Folks, I think I've identified a bug in stax-api-1.0.jar. Specifically javax.xml.stream.XMLStreamReader::getTextStart(). I'm

[jira] Updated: (SOLR-1040) XPathEntityProcessor fails with an xpath like /feed/entry/li...@type='text/html']/@href

2009-02-26 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar updated SOLR-1040: Affects Version/s: 1.3 XPathEntityProcessor fails with an xpath like

[jira] Resolved: (SOLR-1040) XPathEntityProcessor fails with an xpath like /feed/entry/li...@type='text/html']/@href

2009-02-26 Thread Shalin Shekhar Mangar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-1040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shalin Shekhar Mangar resolved SOLR-1040. - Resolution: Fixed Committed revision 748117. Thanks Noble!

Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Emmanuel Castro Santana
I am developing a Solr based search application and need to get a kind of a keyword report for tag cloud generation. If there is anyone here who has ever had that necessity and has somehow found the way through, I would really appreciate some help. Thanks in advance -- View this message in

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Robert Douglass
A solution that I'd considering implementing for Drupal's ApacheSolr module is to do a *:* search and then make tag clouds from all of the facets. Pretty easy to sort all the facet terms into bins based on the number of documents they match, and then to translate bins to font sizes. Tag

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Walter Underwood
That info is already available via Luke, right? --wunder On 2/26/09 9:55 AM, Robert Douglass r...@robshouse.net wrote: A solution that I'd considering implementing for Drupal's ApacheSolr module is to do a *:* search and then make tag clouds from all of the facets. Pretty easy to sort all the

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Walter Underwood
Oops, missed that you wanted it by facet. Never mind. --wunder On 2/26/09 9:57 AM, Walter Underwood wunderw...@netflix.com wrote: That info is already available via Luke, right? --wunder On 2/26/09 9:55 AM, Robert Douglass r...@robshouse.net wrote: A solution that I'd considering

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Emmanuel Castro Santana
Thanks the help ... do a *:* search and then make tag clouds from all of the facets ... I may have not made myself clear. When I say keyword report, I mean a kind of a most popular tag cloud, showing in bigger sizes the most searched terms. Therefore I need information about how many times

[jira] Commented: (SOLR-764) Support facet.sort=false (index order) with distributed search

2009-02-26 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-764?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12677132#action_12677132 ] Yonik Seeley commented on SOLR-764: --- bq. I would expect it to return something like 1, 10,

Re: /trunk java.lang.InterruptedException

2009-02-26 Thread Ryan McKinley
no core reloading. But this is a non-standard core/schema loading process. Reverting to an older copy of solr/lucene makes this go away (at least not show up) any thoughts where to look? I have not looked too deeply. ryan On Feb 25, 2009, at 11:47 PM, Yonik Seeley wrote: Hmmm, I

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Chris Hostetter
: I may have not made myself clear. When I say keyword report, I mean a kind : of a most popular tag cloud, showing in bigger sizes the most searched : terms. Therefore I need information about how many times specific terms have : been searched and I can't see how I could accomplish that with

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Walter Underwood
If you want a tag cloud based on query freqency, start with your HTTP log analysis tools. Most of those generate a list of top queries and top words in queries. wunder On 2/26/09 2:54 PM, Chris Hostetter hossman_luc...@fucit.org wrote: : I may have not made myself clear. When I say keyword

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Emmanuel Castro Santana
Sorry for that. Most searched terms tag cloud is kind of common around here. Solr doesn't keep any record of the searches performed, so to build a tag cloud based on query popularity you would need to mine your logs. Do you know if there is already a tool or a Solr plugin for that ? Thanks

Re: /trunk java.lang.InterruptedException

2009-02-26 Thread Yonik Seeley
Trying to think what could cause an interrupt (other than another thread calling .interrupt())... if it is the executor shutting down early, perhaps some sort of reference counting issue on the core? -Yonik On Thu, Feb 26, 2009 at 5:40 PM, Ryan McKinley ryan...@gmail.com wrote: no core

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Aleksander M. Stensby
To do that, your best option is to do it outside of solr. I.e., when someone enters a query in your webapplication, you store the search in for instance a db (or even in a separate solr-index). If you go with a solr-index for queries, you can simply do facets on the queries and for instance

Re: Is there a built in keyword report (Tag Cloud) feature on Solr ?

2009-02-26 Thread Aleksander M. Stensby
Sorry, that mail got stuck in my outbox. Anyways. On a side-note, i think it is called a search-cloud when refering to top-searches, and a tag-cloud when refering to top-occuring terms in the corpus, as Chris said. Since you are only after creating a search-cloud, i think my answer is a