You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Bill Bell (JIRA)" <ji...@apache.org> on 2012/05/08 20:49:48 UTC

[jira] [Created] (SOLR-3445) SOLR Stored field in ASCII

Bill Bell created SOLR-3445:
-------------------------------

             Summary: SOLR Stored field in ASCII
                 Key: SOLR-3445
                 URL: https://issues.apache.org/jira/browse/SOLR-3445
             Project: Solr
          Issue Type: Improvement
            Reporter: Bill Bell


In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in ASCII format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Updated] (SOLR-3445) SOLR Stored field in byte format

Posted by "Bill Bell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bill Bell updated SOLR-3445:
----------------------------

    Description: In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.  (was: In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in ASCII format instead of UTF-8.)
        Summary: SOLR Stored field in byte format  (was: SOLR Stored field in ASCII)
    
> SOLR Stored field in byte format
> --------------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Commented] (SOLR-3445) SOLR Stored field in byte format

Posted by "Bill Bell (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13270727#comment-13270727 ] 

Bill Bell commented on SOLR-3445:
---------------------------------

Well for most of my use cases I am okay with the 256 characters and don't need the overhead of UTF-8. So instead of converting to UTF-8 just store as a normal String. I would also be good with Lossy versions, but I am unaware of these algorithms. The goal: get the index smaller since I don't need the data in there in UTF-8 format.

String x = new String("Store this into a field in solr");

Instead of something like:

String original = new String("A" + "\u00ea" + "\u00f1" + "\u00fc" + "C");



                
> SOLR Stored field in byte format
> --------------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Commented] (SOLR-3445) SOLR Stored field in ASCII

Posted by "Steven Rowe (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13270712#comment-13270712 ] 

Steven Rowe commented on SOLR-3445:
-----------------------------------

For ASCII characters, UTF-8 has the same footprint as ASCII itself, so there is no space savings available here.

But maybe you are thinking of a lossy conversion from UTF-8 to ASCII?
                
> SOLR Stored field in ASCII
> --------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in ASCII format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Commented] (SOLR-3445) SOLR Stored field in byte format

Posted by "Steven Rowe (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13270726#comment-13270726 ] 

Steven Rowe commented on SOLR-3445:
-----------------------------------

What is byte format?
                
> SOLR Stored field in byte format
> --------------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Commented] (SOLR-3445) SOLR Stored field in non UTF-8 (non-unicoded format)

Posted by "Bill Bell (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13270752#comment-13270752 ] 

Bill Bell commented on SOLR-3445:
---------------------------------

Does Codecs help with this?
                
> SOLR Stored field in non UTF-8 (non-unicoded format)
> ----------------------------------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Updated] (SOLR-3445) SOLR Stored field in non UTF-8 (non-unicoded format)

Posted by "Bill Bell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bill Bell updated SOLR-3445:
----------------------------

    Summary: SOLR Stored field in non UTF-8 (non-unicoded format)  (was: SOLR Stored field in byte format)
    
> SOLR Stored field in non UTF-8 (non-unicoded format)
> ----------------------------------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Commented] (SOLR-3445) SOLR Stored field in byte format

Posted by "Bill Bell (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SOLR-3445?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13270728#comment-13270728 ] 

Bill Bell commented on SOLR-3445:
---------------------------------

Non-Unicoded format? 
                
> SOLR Stored field in byte format
> --------------------------------
>
>                 Key: SOLR-3445
>                 URL: https://issues.apache.org/jira/browse/SOLR-3445
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bill Bell
>
> In order to reduce the size of the stored fields and increase performance of SOLR by limiting the payload, we should consider adding a parameter for stored that will store the information in byte format instead of UTF-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org