{"id":13656809,"url":"https://github.com/alibaba/ApsaraCache","last_synced_at":"2025-04-24T00:32:03.553Z","repository":{"id":52560243,"uuid":"106665882","full_name":"alibaba/ApsaraCache","owner":"alibaba","description":"archived | ApsaraCache is a Redis branch originated from Alibaba Group. ","archived":true,"fork":false,"pushed_at":"2024-02-27T06:47:46.000Z","size":69720,"stargazers_count":937,"open_issues_count":19,"forks_count":160,"subscribers_count":114,"default_branch":"develop","last_synced_at":"2025-01-20T07:51:44.493Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alibaba.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-12T08:29:35.000Z","updated_at":"2024-11-11T02:54:56.000Z","dependencies_parsed_at":"2024-08-02T05:13:13.993Z","dependency_job_id":null,"html_url":"https://github.com/alibaba/ApsaraCache","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2FApsaraCache","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2FApsaraCache/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2FApsaraCache/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alibaba%2FApsaraCache/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alibaba","download_url":"https://codeload.github.com/alibaba/ApsaraCache/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250539520,"owners_count":21447328,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T05:00:32.628Z","updated_at":"2025-04-24T00:31:58.497Z","avatar_url":"https://github.com/alibaba.png","language":"C","readme":"⚠️ This project is archived\n\nWhat is ApsaraCache ?\n--------------\n\nApsaraCache is based on the Redis official release 4.0 and has many features and performance enhancements. ApsaraCache has proven to be very stable and efficient in production environment.\n\nThere are many features in ApsaraCache, the following two are included in this release and the other features will be gradually released in the subsequent, so stay tuned.\n\n* ApsaraCache supports two main protocols of Memcached: the classic ASCII, and the newer binary. You can use ApsaraCache just as Memcached, and no client code need to be modified. You can persist your data by using ApsaraCache in Memcached mode just like Redis.\n* In short connection scenario, ApsaraCache makes 30% performance increase compared with the vanilla version.\n\n\nBuilding ApsaraCache\n--------------\n\nIt is as simple as:\n\n    % make\n    \nRunning ApsaraCache\n-------------\nIn default, ApsaraCache run in Redis mode. If you want ApsaraCache to run in Memcached mode, just add option \n\n       protocol  memcache\n       \nto redis.conf.\n\nTo run ApsaraCache with the default configuration just type:\n\n    % cd src\n    % ./redis-server\n\nIf you want to provide your redis.conf, you have to run it using an additional\nparameter (the path of the configuration file):\n\n    % cd src\n    % ./redis-server /path/to/redis.conf\n\nIt is possible to alter the ApsaraCache configuration by passing parameters directly\nas options using the command line. Examples:\n\n    % ./redis-server --port 9999 --slaveof 127.0.0.1 6379\n    % ./redis-server /etc/redis/6379.conf --loglevel debug\n\nAll the options in redis.conf are also supported as options using the command\nline, with exactly the same name.\n\nPlaying with ApsaraCache in Redis mode\n------------------\n\nYou can use redis-cli to play with ApsaraCache. Start a redis-server instance,\nthen in another terminal try the following:\n\n    % cd src\n    % ./redis-cli\n    redis\u003e ping\n    PONG\n    redis\u003e set foo bar\n    OK\n    redis\u003e get foo\n    \"bar\"\n    redis\u003e incr mycounter\n    (integer) 1\n    redis\u003e incr mycounter\n    (integer) 2\n    redis\u003e\n\nYou can find the list of all the available commands at http://redis.io/commands.\n\nPlaying with ApsaraCache in Memcached mode\n------------------\n\nYou can use telnet to visit ApsaraCache(telnet use the classic ASCII protocol).\n\n     % telnet your-host your-port(usually 11211)\n     \n       set key 10 3600 2\n       ok\n       STORED\n       get key\n       VALUE key 10 2\n       ok\n       END  \n\n\n\nEnjoy!\n\nTest new persistence mechanism and PITR\n------------------\n* [Documentation](https://github.com/alibaba/ApsaraCache/wiki/Test-new-persistence-mechanism-and-PITR)\n\nTest log based replication(AOF PSYNC)\n------------------\n* [Documentation](https://github.com/alibaba/ApsaraCache/wiki/Test-log-based-replication(AOF-PSYNC))\n\nDocumentation\n------------------\n* [Documentation Home](https://github.com/alibaba/ApsaraCache/wiki/ApsaraCache-document)\n* [Frequently Asked Questions](https://github.com/alibaba/ApsaraCache/wiki/frequently-ask-questions)\n\nContributing\n------------------\nSee [ApsaraCache Contributing Guide](https://github.com/alibaba/ApsaraCache/wiki/CONTRIBUTING) for more information.\n","funding_links":[],"categories":["C (61)","C"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falibaba%2FApsaraCache","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falibaba%2FApsaraCache","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falibaba%2FApsaraCache/lists"}