AGFS
AGFS File System Performance Test
· ☕ 6 min read
1. Installing wrk 1 apt-get install -y wrk 2. localfs Performance Test 2.1 1KB Small File Test Write file 1 2 3 4 5 6 7 8 9 10 11 12 13 14 cat > put-1k.lua <<"EOF" wrk.method = "PUT" wrk.body = string.rep("a", 1024) wrk.headers["Content-Type"] = "text/plain" counter = 0 local WRAP = 500000 request = function() counter = counter + 1 local n = ((counter - 1) % WRAP) + 1 local filename = "/local/perf-1k/test_" .

A File System for AI Agents - AGFS
· ☕ 5 min read
1. Introduction to AGFS Overview AGFS is a project that provides storage services through a RESTful API. It supports a variety of storage backends, including memory, files, databases, message queues, and more. Because it does not need POSIX interface support, data can be stored through remote calls, which is very useful in AI Agents.