aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-19 11:44:30 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-19 11:44:30 -0400
commit8f91867f52f96b131993a7117531f801e20a04a3 (patch)
treea35a7c489b7fc6cf4474a8a968d0e1d2f03a476f /lib
parent4e94a53ee517c47ffc0a024c4d3e72b1968f9dac (diff)
merge core updates, AppendSmall()
Diffstat (limited to 'lib')
-rw-r--r--lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs b/lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs
index c434e22..f28ea74 100644
--- a/lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs
+++ b/lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs
@@ -143,8 +143,8 @@ namespace VNLib.Plugins.Extensions.VNCache
ForwardOnlyWriter<char> writer = new(buffer);
//Append prefix and entity id
- writer.Append(Prefix);
- writer.Append(entityId);
+ writer.AppendSmall(Prefix);
+ writer.AppendSmall(entityId);
//Compute the simple hash of the combined values
return ManagedHash.ComputeHash(writer.AsSpan(), Digest, Encoding);