Make Luna strings considerably faster

This commit is contained in:
DBotThePony 2024-04-14 02:03:02 +07:00
parent 8ee60c0f4d
commit c49c0e4393
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 11 additions and 2 deletions

View File

@ -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)) {

View File

@ -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