{"id":18343419,"url":"https://github.com/cosimo/perl6-cache-memcached","last_synced_at":"2025-09-10T10:35:38.986Z","repository":{"id":66959057,"uuid":"806900","full_name":"cosimo/perl6-cache-memcached","owner":"cosimo","description":"Port of Cache::Memcached from Perl 5 to Perl 6","archived":false,"fork":false,"pushed_at":"2019-02-08T21:57:39.000Z","size":119,"stargazers_count":5,"open_issues_count":3,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-09T21:49:59.912Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Perl 6","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cosimo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2010-07-30T06:23:54.000Z","updated_at":"2021-06-08T13:29:14.000Z","dependencies_parsed_at":"2023-05-15T21:45:07.828Z","dependency_job_id":null,"html_url":"https://github.com/cosimo/perl6-cache-memcached","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/cosimo/perl6-cache-memcached","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosimo%2Fperl6-cache-memcached","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosimo%2Fperl6-cache-memcached/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosimo%2Fperl6-cache-memcached/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosimo%2Fperl6-cache-memcached/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cosimo","download_url":"https://codeload.github.com/cosimo/perl6-cache-memcached/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosimo%2Fperl6-cache-memcached/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274447534,"owners_count":25287114,"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","status":"online","status_checked_at":"2025-09-10T02:00:12.551Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-11-05T20:35:59.271Z","updated_at":"2025-09-10T10:35:38.943Z","avatar_url":"https://github.com/cosimo.png","language":"Perl 6","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cache::Memcached [![Build Status](https://travis-ci.org/cosimo/perl6-cache-memcached.svg?branch=master)](https://travis-ci.org/cosimo/perl6-cache-memcached)\n\nPerl6 client for [memcached](http://www.danga.com/memcached/) a distributed\ncaching daemon.\n\n## Synopsis\n\n```perl6\n  use Cache::Memcached;\n\n  my $memd = Cache::Memcached.new;\n\n  $memd.set(\"my_key\", \"Some value\");\n\n  $memd.incr(\"key\");\n  $memd.decr(\"key\");\n  $memd.incr(\"key\", 2);\n\n```\nOr you can use it as an Associative type:\n\n```perl6\n\nuse Cache::Memcached;\n\nmy $memd = Cache::Memcached.new;\n\n$memd\u003cmy_key\u003e = \"Some value\";\nsay $memd\u003cmy_key\u003e;\n$memd\u003cmy_key\u003e:delete;\n```\n\n## Description\n\nThis provides an interface to the [memcached](http://www.danga.com/memcached/)\ndaemon. You will need to have access to a memcached server to be able to\nuse it.\n\nCurrently there is no support for compression or the serialization of\nstructured objects (though both could be provided by the agency of\nexternal modules.)\n\n## Installation\n\nAssuming you have a working Rakudo Perl 6 installation you should be able to\ninstall this with *zef* :\n\n    # From the source directory\n   \n    zef install .\n\n    # Remote installation\n\n    zef install Cache::Memcached\n\nThere should be no reason that it won't work with any new installer\nthat may come along in the future.\n\n## Support\n\nSuggestions/patches are welcomed via github at\n\nhttps://github.com/cosimo/perl6-cache-memcached/issues\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosimo%2Fperl6-cache-memcached","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcosimo%2Fperl6-cache-memcached","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosimo%2Fperl6-cache-memcached/lists"}