Hi,
On Mon, Mar 31, 2014 at 3:25 PM, Michael Dürig <[email protected]> wrote:
> 2nd try: http://svn.apache.org/r1583413
That's more correct, but has horrible performance with any
implementation (including BlobStoreBlob and SegmentBlob) that doesn't
precompute the hash.
As mentioned earlier, a better alternative would be to add an explicit
method for this and let the implementations decide what the best
identifier would be.
For BlobStoreBlob that would likely be:
public String getContentIdentity() {
return blobId;
}
And for SegmentBlob:
public String getContentIdentity() {
return getRecordId().toString();
}
BR,
Jukka Zitting