Revert "Redis PUB/SUB (#21728)"

This reverts commit dc3c8f79c4.
This commit is contained in:
Jarred Sumner
2025-09-09 23:30:54 -07:00
parent d7ca10e22f
commit 6611983038
14 changed files with 135 additions and 2072 deletions

View File

@@ -236,15 +236,6 @@ pub fn writable(this: *StringBuilder) []u8 {
return ptr[this.len..this.cap];
}
/// Transfer ownership of the underlying memory to a slice.
///
/// After calling this, you are responsible for freeing the underlying memory.
/// This StringBuilder should not be used after calling this function.
pub fn moveToSlice(this: *StringBuilder, into_slice: *[]u8) void {
into_slice.* = this.allocatedSlice();
this.* = .{};
}
const std = @import("std");
const Allocator = std.mem.Allocator;