{"id":15934454,"url":"https://github.com/altenwald/memhash","last_synced_at":"2026-03-06T02:38:45.303Z","repository":{"id":57524725,"uuid":"110314908","full_name":"altenwald/memhash","owner":"altenwald","description":"Memory Hashing Handling for Erlang/OTP","archived":false,"fork":false,"pushed_at":"2018-04-23T21:52:29.000Z","size":779,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-07-07T11:16:53.175Z","etag":null,"topics":["array-manipulations","erlang","references"],"latest_commit_sha":null,"homepage":"","language":"Erlang","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/altenwald.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-11T03:29:48.000Z","updated_at":"2023-09-08T17:32:25.000Z","dependencies_parsed_at":"2022-09-16T16:45:14.214Z","dependency_job_id":null,"html_url":"https://github.com/altenwald/memhash","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/altenwald/memhash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altenwald%2Fmemhash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altenwald%2Fmemhash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altenwald%2Fmemhash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altenwald%2Fmemhash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/altenwald","download_url":"https://codeload.github.com/altenwald/memhash/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/altenwald%2Fmemhash/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264719240,"owners_count":23653542,"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":["array-manipulations","erlang","references"],"created_at":"2024-10-07T03:03:07.794Z","updated_at":"2026-03-06T02:38:45.259Z","avatar_url":"https://github.com/altenwald.png","language":"Erlang","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# memhash #\n\nCopyright (c) 2017-2018 Altenwald Solutions, S.L.\n\n__Authors:__ \"Manuel Rubio\" ([`manuel@altenwald.com`](mailto:manuel@altenwald.com)).\n\n[![Build Status](https://img.shields.io/travis/altenwald/memhash/master.svg)](https://travis-ci.org/altenwald/memhash)\n[![Codecov](https://codecov.io/gh/altenwald/memhash/branch/master/graph/badge.svg)](https://codecov.io/gh/altenwald/memhash)\n[![License: LGPL 2.1](https://img.shields.io/github/license/altenwald/memhash.svg)](https://raw.githubusercontent.com/altenwald/memhash/master/COPYING)\n[![Hex](https://img.shields.io/hexpm/v/memhash.svg)](https://hex.pm/packages/memhash)\n\nThis project helps handling the memory for other implementations that requires some properties like a heterogeneous array with the use of references and keep all of them clean.\n\n\n### \u003ca name=\"Requirements\"\u003eRequirements\u003c/a\u003e ###\n\nePHP requires to be run over an Erlang/OTP 17+, but not all the versions are full compatible or recommended. See the list:\n\n| Erlang Version | Support | Notes |\n|:---|:---:|:---|\n| 20.1 | :heavy_check_mark: | Recommended if you use OTP 20 |\n| 20.0 | :heavy_check_mark: | |\n| 19.3 | :heavy_check_mark: | Recommended if you use OTP 19 |\n| 19.2 | :heavy_check_mark: | |\n| 19.1 | :heavy_check_mark: | |\n| 19.0 | :heavy_check_mark: | |\n| 18.3 | :heavy_check_mark: | Recommended if you use OTP 18 |\n| 18.2.1 | :heavy_check_mark: | |\n| 18.2 | :heavy_check_mark: | |\n| 18.1 | :heavy_check_mark: | |\n| 18.0 | :heavy_check_mark: | |\n| 17.5 | :heavy_check_mark: | Recommended if you use OTP 17 |\n| 17.4 | :heavy_check_mark: | |\n| 17.3 | :x: | fail in SSL |\n| 17.1 | :heavy_check_mark: | |\n| 17.0 | :heavy_check_mark: | |\n\n\n### \u003ca name=\"Installation\"\u003eInstallation\u003c/a\u003e ###\n\nA simple way to use, is include in your project `rebar.config` the following dependency line:\n\n```erlang\n    {memhash, {git, \"git://github.com/altenwald/memhash.git\", master}}\n```\n\n\n## Modules ##\n\n\n\u003ctable width=\"100%\" border=\"0\" summary=\"list of modules\"\u003e\n\u003ctr\u003e\u003ctd\u003e\u003ca href=\"http://github.com/altenwald/memhash/blob/master/doc/memhash.md\" class=\"module\"\u003ememhash\u003c/a\u003e\u003c/td\u003e\u003c/tr\u003e\n\u003ctr\u003e\u003ctd\u003e\u003ca href=\"http://github.com/altenwald/memhash/blob/master/doc/memhash_data.md\" class=\"module\"\u003ememhash_data\u003c/a\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltenwald%2Fmemhash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faltenwald%2Fmemhash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltenwald%2Fmemhash/lists"}