Skip to content
View neomantra's full-sized avatar

Highlights

  • Pro

Organizations

@openresty @wethinkt

Block or report neomantra

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. wethinkt/go-thinkt wethinkt/go-thinkt Public

    Tools for extracting and analyzing and sharing LLM conversations and reasoning

    Go 4 1

  2. ymdflag ymdflag Public

    YMDFlag implements a Golang flag.Value interface for YYYYMMDD-specified dates, facilitating CLI argument handling of dates like -start-date=20210101

    Go 4

  3. srv-plz srv-plz Public

    SRV record extractor with custom resolver

    Go 9

  4. tf tf Public

    Human-format timevals in the shell

    Go 2

  5. openresty/docker-openresty openresty/docker-openresty Public

    Docker tooling for OpenResty

    Dockerfile 1k 538

  6. Notes on running Redis with HPC tech... Notes on running Redis with HPC techniques
    1
    # High Performance Redis
    2
     
    3
    In response to [this brief blog entry](https://wjd.io/2019/03/08/redis-cpu-pinning/), [@antirez tweeted](https://twitter.com/antirez/status/1104075055879864320) for some documentation on high-performance techniques for Redis. What I present here are general high-performance computing (HPC) techniques. The examples are oriented to Redis. but they work well for any program designed to be single- or worker-threaded and asynchronous (e.g. uses epoll).
    4
     
    5
    The motivation for using these techniques is to maximize performance of our system and services. By isolating work, controlling memory, and other tuning, you can achieve significant reduction in latency and increase in throughput.