Back to browse
GitHub Repository

goxe is a log reduction tool written in go. it normalizes, filters, and aggregates repeated messages. the result is less noise, lower bandwidth, and cheaper storage without losing visibility into recurring issues.

81 starsGo

Goxe v1.3.6 – Faster processing with zero-copy byte slices

by nxus_dev·Feb 18, 2026·1 point·0 comments

AI Analysis

MidWizardryNiche Gem
The Take

Switching core processing from string conversions to zero-copy byte slices is a concrete, measurable win for tools that churn through repositories and API payloads — fewer allocations, better throughput. The addition of a self-update (goxe update) for Unix and several GitHub API edge-case fixes shows practical attention to workflow friction, but this is a focused performance/tooling improvement for a niche audience rather than a category changer.

Target Audience

Backend developers, DevOps engineers, and anyone who builds or uses performance-sensitive CLI tooling

Post Description

Goxe v1.3.6 is out. This release focuses on performance and developer experience:

Performance: Refactored core processing to use byte slices instead of string conversions, reducing allocations and improving throughput.

Reliability: Fixed several edge cases in the GitHub API integration.

UX (Unix): Added a new goxe update command for hot-reloading, allowing the binary to update itself without interrupting the workflow on Unix systems.

Check it out here: https://github.com/DumbNoxx/goxe/releases/tag/v1.3.6

Version Notes: https://dumbnoxx.github.io/goxe-doc/releases/v136/

Similar Projects

Finance●●Solid

We Made Nasdaq Parsing Even Faster (and More Reliable)

They stopped pretending chunking at arbitrary byte offsets was fine and instead scan once to build message boundaries, then binary-search for clean split points — that simple change eliminates the OOM-by-design scenario. Couple that with SIMD-aware prefetch tuning (different distances for AVX2 vs AVX-512) and you get practical microarch-aware engineering, not just benchmark stunts; I want this shipped as a library or tool so other firms can stop reinventing the same footguns.

WizardryNiche Gem
sundancegh
204mo ago
Developer Tools●●Solid

Fast_copy new release with new features

SSH tar streaming beats SFTP speeds, but rsync already owns this category.

Solve My ProblemBig Brain
yskapell
1028d ago
Security●●Solid

Detecting running processes using AF_ALG

Faster JSON output for AF_ALG detection than piping lsof through grep.

Niche GemShip It
Nullence
101mo ago