HN user

alash3al

230 karma
Posts21
Comments7
View on HN
alash3al.github.io 2mo ago

Open source memory layer so any AI agent can do what Claude.ai and ChatGPT do

alash3al
185pts77
github.com 3mo ago

Universal Knowledge Store and Grounding Layer for AI Reasoning Engines

alash3al
2pts0
github.com 3mo ago

Living Memory Inference

alash3al
2pts0
blog.alash3al.com 7mo ago

Why Software Processes Exist (Hint: Not Why You Think)

alash3al
2pts2
github.com 1y ago

I built a vector embedding database in Go for learning purposes

alash3al
8pts1
github.com 4y ago

Scrapy x: a lightweight distributed scrapy clustering solution

alash3al
22pts0
github.com 6y ago

Sql2slack – send SQL results periodically to slack

alash3al
1pts0
github.com 6y ago

Scraply – a tiny portable scraping engine using jQuery like syntax

alash3al
4pts0
github.com 6y ago

A simple and tiny scrapy clustering solution, a drop-in replacement for scrapyd

alash3al
1pts0
github.com 7y ago

Scraping As A Service, scrap HTML content and convert it to JSON APIs

alash3al
4pts0
www.producthunt.com 7y ago

Phone Number Validation API

alash3al
1pts1
github.com 7y ago

SQLer – Turn Your SQL queries into RESTful APIs without any programming language

alash3al
248pts55
alash3al.github.io 7y ago

Show HN: RedixDB – a fast persistent key-value store with the Redis protocol

alash3al
75pts24
blog.uflare.io 7y ago

How we scaled wordpress to handle X millions of users per day

alash3al
1pts0
medium.com 8y ago

Show HN: Lightify, speed any website without any hassle

alash3al
5pts0
github.com 8y ago

Automatic webpage optimizer (reverse proxy to minify and combine the assets)

alash3al
1pts0
github.com 8y ago

BKit – Build Messenger Bot Using HTML

alash3al
1pts0
github.com 8y ago

A self-hosted tiny realtime messaging service based on redis

alash3al
2pts0
github.com 8y ago

SSH into any container on a host from anywhere

alash3al
1pts0
github.com 9y ago

Nginx-docker-proxy alternative with roundrobin and autossl

alash3al
1pts0
github.com 10y ago

A transparent http/2 and ssl offloader using letsencrypt with auto renewal

alash3al
1pts0

1- Multi: yes, I'm planning to support it in the next releases.

2- Consistency: Yep, also there will be test cases soon. 3- Performance: at first, nothing will be faster than RAM, so don't expect that an on-disk store is faster than an in-memory store, but that doesn't mean that on-disk stores are very slow, I selected two storage engines called bolt and badger, badger is the default because it follows RocksDB design and rocksdb. for redix server compared to redis server, redix doesn't use an eventloop, but each connection runs in its own light-weight thread, so there no possibilities that you run a command and block the server itself, another note is: the underlying implementation of internal datatypes makes redix faster in some cases especially when you try to load large datasets, you will notice that redix has very low response time than redis, that means, in a highly loaded environment you find redix performance better than redis especially with the coming version because redix will lower the memory usage more and more. Every day I improve it more and more, and thanks for the issues creator on the repo, they're helping me too in organizing my thoughts.