Ted Yu created HBASE-11147:
------------------------------

             Summary: Avoid creating List of KeyValue in 
FilterBase#filterRowCells(List<Cell>)
                 Key: HBASE-11147
                 URL: https://issues.apache.org/jira/browse/HBASE-11147
             Project: HBase
          Issue Type: Task
            Reporter: Ted Yu
            Priority: Minor


Currently a List of KeyValue's is always created:
{code}
    List<KeyValue> kvs = new ArrayList<KeyValue>(ignored.size());
{code}
When passed ignored List is of KeyValue (which is the only implementation of 
Cell at the moment), the above step should be avoided.

This would reduce creation of short-lived objects.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to