{"id":18880437,"url":"https://github.com/moimhossain/container-performance","last_synced_at":"2026-04-08T18:31:14.938Z","repository":{"id":38058445,"uuid":"203956360","full_name":"MoimHossain/container-performance","owner":"MoimHossain","description":"Some tests I perform against windows container and networking technologies","archived":false,"fork":false,"pushed_at":"2022-08-31T23:58:04.000Z","size":279,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-31T07:11:17.194Z","etag":null,"topics":["asp-net-core","aspnetcore","containers","docker","docker-image","grpc","ipc","linux","pipe","signalr","tcp","tcp-channel","unix","unix-domain-socket","wcf","windows-containers"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MoimHossain.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":"2019-08-23T08:23:32.000Z","updated_at":"2022-12-16T14:55:37.000Z","dependencies_parsed_at":"2023-01-16T15:45:32.648Z","dependency_job_id":null,"html_url":"https://github.com/MoimHossain/container-performance","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MoimHossain/container-performance","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoimHossain%2Fcontainer-performance","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoimHossain%2Fcontainer-performance/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoimHossain%2Fcontainer-performance/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoimHossain%2Fcontainer-performance/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MoimHossain","download_url":"https://codeload.github.com/MoimHossain/container-performance/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MoimHossain%2Fcontainer-performance/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31568577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["asp-net-core","aspnetcore","containers","docker","docker-image","grpc","ipc","linux","pipe","signalr","tcp","tcp-channel","unix","unix-domain-socket","wcf","windows-containers"],"created_at":"2024-11-08T06:43:53.839Z","updated_at":"2026-04-08T18:31:14.888Z","avatar_url":"https://github.com/MoimHossain.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# container-performance\n\n\nThis repository contains few small application that I have used to compare performance of IPC/Remoting in .NET framework (various technologies i.e. TCP channels, SignalR and gRPC) running inside **windows containers** (both ```windows server container``` and ```hyperV``` container).\n\n## TCP Channel - WCF \n\nHow to run:\n \n- Go to the project **TcpNetFramework**\n- Build docker image:\n\nRun the server with following command:\n```\ndocker run -it -p 8789:8789 moimhossain/wcf-tcp-net-framework:latest\n```\n\nTo run client\n```\ndocker run -it moimhossain/wcf-tcp-net-framework:latest\n```\n\n\u003e Please use ```--isolation=process|hyperv``` switch to change container isolation modes\n\n## SignalR\n\nHow to run:\n \n- Go to the project **SignalR**\n- Build docker image:\n\nRun the server with following command:\n```\ndocker run -it -p 8790:8790 moimhossain/signalr-net-framework:latest\n```\n\nTo run client\n```\ndocker run -it moimhossain/signalr-net-framework:latest\n```\n\n\u003e Please use ```--isolation=process|hyperv``` switch to change container isolation modes\n\n## gRPC\n\nHow to run:\n \n- Go to the project **gRPC**\n- Build docker image:\n\nRun the server with following command:\n```\ndocker run -it -p 7888:7888 moimhossain/grpc-net-framework:latest\n```\n\nTo run client\n```\ndocker run -it moimhossain/grpc-net-framework:latest\n```\n\n\u003e Please use ```--isolation=process|hyperv``` switch to change container isolation modes\n\n\n\n\n### IPC via Shared memory (Queue) on UNIX\n\nThe demo that uses shared memory on UNIX\n\n#### How to build\n\nBuild using the following docker command:\n\n```\ndocker build -t moimhossain/unix-shared-memory-demo .\n```\n\n#### How to run Producer/Writer\n\nUse the followig command to run the producer\n\n```\ndocker run --ipc shareable --name producer moimhossain/unix-shared-memory-demo -producer\n```\n\n```\n docker rm -v producer\n```\n\n\u003e Notice: You need to specify the IPC namespace as **shareable** so Docker engine will map the namespace to the consumer/reader container.\n\n#### How to run the Consumer/Reader\n\nUse the following command to run the consumer:\n\n```\n docker run --name consumer --ipc container:producer moimhossain/unix-shared-memory-demo -consumer\n```\n\nAnd for clean up:\n```\n docker rm -v consumer\n```\n\n# That's it!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoimhossain%2Fcontainer-performance","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoimhossain%2Fcontainer-performance","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoimhossain%2Fcontainer-performance/lists"}