Popularity
2.6
Growing
Activity
2.5
Growing
33
4
8
Programming language: Go
License: MIT License
Tags:
Miscellaneous
Strings
Latest version: v1.0.0
numa alternatives and similar packages
Based on the "Strings" category.
Alternatively, view numa alternatives based on common mentions on social networks and blogs.
-
ghorg
Quickly clone or backup an entire org/users repositories into one directory - Supports GitHub, GitLab, Bitbucket, and more ๐๐ฅ -
gobeam/Stringy
Convert string to camel case, snake case, kebab case / slugify, custom delimiter, pad string, tease string and many other functionalities with help of by Stringy package.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of numa or a related project?
Popular Comparisons
README
NUMA
NUMA is a utility library, which is written in go. It help us to write some NUMA-AWARED code.
example gist:
package main
import (
"github.com/lrita/numa"
)
type object struct {
X int
_ [...]byte // padding to page size.
}
var objects = make([]object, numa.CPUCount())
func fnxxxx() {
cpu, node := numa.GetCPUAndNode()
objects[cpu].X = xx
}