{"id":20199518,"url":"https://github.com/screw-coding/unnamed","last_synced_at":"2025-08-28T17:35:22.315Z","repository":{"id":41102717,"uuid":"508126378","full_name":"screw-coding/unnamed","owner":"screw-coding","description":"How does Internet application work? Let's realize this set of toys by ourselves!","archived":false,"fork":false,"pushed_at":"2022-07-09T11:24:46.000Z","size":4625,"stargazers_count":2,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-13T19:52:42.008Z","etag":null,"topics":["craft","recomend-system","search-engine","tcp-client","tcp-server","web-server"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/screw-coding.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-28T02:21:14.000Z","updated_at":"2022-07-01T09:37:17.000Z","dependencies_parsed_at":"2022-09-12T22:40:24.853Z","dependency_job_id":null,"html_url":"https://github.com/screw-coding/unnamed","commit_stats":null,"previous_names":["screw-coding/xxx-full-stack"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screw-coding%2Funnamed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screw-coding%2Funnamed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screw-coding%2Funnamed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screw-coding%2Funnamed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/screw-coding","download_url":"https://codeload.github.com/screw-coding/unnamed/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241637149,"owners_count":19994925,"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":["craft","recomend-system","search-engine","tcp-client","tcp-server","web-server"],"created_at":"2024-11-14T04:37:57.768Z","updated_at":"2025-03-03T08:41:20.325Z","avatar_url":"https://github.com/screw-coding.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# unnamed\n[![gh-action](https://github.com/screw-coding/unnamed/actions/workflows/go.yml/badge.svg)](https://github.com/screw-coding/unnamed/actions/workflows/go.yml)\n[![codecov](https://codecov.io/gh/screw-coding/unnamed/branch/staging/graph/badge.svg)](https://codecov.io/gh/screw-coding/unnamed)\n[![Bors enabled](https://bors.tech/images/badge_small.svg)](https://app.bors.tech/repositories/46302)\n[![report card](https://goreportcard.com/badge/github.com/screw-coding/unnamed)](https://goreportcard.com/report/github.com/screw-coding/unnamed)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gojp/goreportcard/blob/master/LICENSE)\n\n\n\n\n## Description\n\nHow does Internet application work? Let's realize this set of toys by ourselves!\n\n## Project Structure\n\n1. It based on [project-layout](https://github.com/golang-standards/project-layout)\n2. This project use **go work** mode to manage different modules\n\n\n## Project Architecture\n\nWith Jetbrains products,you can search markdown in settings,then install mermaid extension,then you can see the following graph\n```mermaid\nflowchart LR\n    app-load-balancer--\u003eapp-web-server--\u003eapp-web\n     \n    app-web--\u003eapp-relation-database\n    app-web--\u003eapp-cache\n    app-web--\u003eapp-recommend-engine\n    app-web--\u003eapp-message-queue\n    app-web--\u003eapp-full-text-search-engine\n   \n    app-relation-database-.-\u003ecomp-tcp-client-server\n    app-relation-database-.-\u003ecomp-tokenizer\n    app-relation-database-.-\u003ecomp-file-store\n    app-relation-database-.-\u003ecomp-filter\n    app-relation-database-.-\u003ecomp-cache\n    \n    app-recommend-engine-.-\u003ecomp-tokenizer\n    app-recommend-engine-.-\u003ecomp-file-store\n    app-recommend-engine-.-\u003ecomp-http-client-server\n    app-recommend-engine-.-\u003ecomp-filter\n    \n    app-cache-.-\u003ecomp-tcp-client-server\n    app-cache-.-\u003ecomp-cache\n    app-cache-.-\u003ecomp-file-store\n    \n    app-full-text-search-engine-.-\u003ecomp-http-client-server\n    app-full-text-search-engine-.-\u003ecomp-file-store\n    app-full-text-search-engine-.-\u003ecomp-filter\n    app-full-text-search-engine-.-\u003ecomp-tokenizer\n    \n    app-message-queue-.-\u003ecomp-tcp-client-server\n    app-message-queue-.-\u003ecomp-file-store\n    app-message-queue-.-\u003ecomp-filter\n    app-message-queue-.-\u003ealgo-delay-message\n    \n    comp-file-store\n    comp-http-client-server\n    comp-tcp-client-server\n    comp-file-cache\n    comp-memory-cache\n    comp-tokenizer\n    comp-filter\n    \n    \n    algo-b-tree-index\n    algo-hash-index\n    algo-inverted-index\n    algo-bitcask\n    algo-delay-message\n    \n    algo-lru\n    algo-wal\n    \n    algo-filter-stop-word\n    algo-filter-stemmer\n    algo-filter-collaborative\n    algo-filter-lowercase\n    \n    \n    comp-http-client-server-.-\u003ecomp-tcp-client-server\n    comp-http-client-server-.-\u003ecomp-file-cache\n    \n    comp-memory-cache-.-\u003ealgo-lru\n    comp-memory-cache-.-\u003ealgo-hash-index\n    \n    comp-file-store-.-\u003ealgo-bitcask\n    comp-file-store-.-\u003ealgo-inverted-index\n    comp-file-store-.-\u003ealgo-b-tree-index\n    comp-file-store-.-\u003ealgo-wal\n    comp-file-store-.-\u003ealgo-hash-index\n    comp-file-store-.-\u003ealgo-lsm-tree\n    \n    comp-filter-.-\u003ealgo-filter-stop-word\n    comp-filter-.-\u003ealgo-filter-stemmer\n    comp-filter-.-\u003ealgo-filter-collaborative\n    comp-filter-.-\u003ealgo-filter-lowercase\n    \n    comp-cache-.-\u003ecomp-memory-cache\n    comp-cache-.-\u003ecomp-file-store\n    \n\n```\n\n## DOCUMENTATION\n\n* [Help me to choose a project name!](docs/issue-6-which-name.md)\n* [How to run unit test?](docs/issue-14-go-unit-test.md)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscrew-coding%2Funnamed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscrew-coding%2Funnamed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscrew-coding%2Funnamed/lists"}