Popularity
2.7
Growing
Activity
2.5
Growing
38
3
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 massive amounts of 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.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
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
}
