aboutsummaryrefslogtreecommitdiff
path: root/lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/VNLib.Plugins.Extensions.VNCache/src/VNCacheExtensions.cs')
-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);