Make Luna strings considerably faster
This commit is contained in:
parent
8ee60c0f4d
commit
c49c0e4393
@ -58,6 +58,10 @@ class ArrayByteString extends ByteString {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (that instanceof ArrayByteString bstring) {
|
||||
return Arrays.equals(this.bytes, bstring.bytes);
|
||||
}
|
||||
|
||||
int len = this.length();
|
||||
for (int i = 0; i < len; i++) {
|
||||
if (this.byteAt(i) != that.byteAt(i)) {
|
||||
|
@ -152,10 +152,15 @@ class StringByteString extends ByteString {
|
||||
return string.isEmpty();
|
||||
}
|
||||
|
||||
private byte[] bytesCache;
|
||||
|
||||
// must not escape, may be an array from the cache!
|
||||
private byte[] toBytes() {
|
||||
// TODO: cache the result
|
||||
return string.getBytes(charset);
|
||||
if (bytesCache == null) {
|
||||
bytesCache = string.getBytes(charset);
|
||||
}
|
||||
|
||||
return bytesCache;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user