René's URL Explorer Experiment


Title: Ractor incompatibility: DefaultFactory not shareable, C extension methods marked ractor-unsafe · Issue #390 · msgpack/msgpack-ruby · GitHub

Open Graph Title: Ractor incompatibility: DefaultFactory not shareable, C extension methods marked ractor-unsafe · Issue #390 · msgpack/msgpack-ruby

X Title: Ractor incompatibility: DefaultFactory not shareable, C extension methods marked ractor-unsafe · Issue #390 · msgpack/msgpack-ruby

Description: The msgpack gem (1.8.0) cannot be used inside Ractors on Ruby 4.0. Every operation - MessagePack.pack, .unpack, creating Packer/Unpacker/Factory instances - fails. This makes it impossible to use Ractors for parallel MessagePack serializ...

Open Graph Description: The msgpack gem (1.8.0) cannot be used inside Ractors on Ruby 4.0. Every operation - MessagePack.pack, .unpack, creating Packer/Unpacker/Factory instances - fails. This makes it impossible to use R...

X Description: The msgpack gem (1.8.0) cannot be used inside Ractors on Ruby 4.0. Every operation - MessagePack.pack, .unpack, creating Packer/Unpacker/Factory instances - fails. This makes it impossible to use R...

Opengraph URL: https://github.com/msgpack/msgpack-ruby/issues/390

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Ractor incompatibility: DefaultFactory not shareable, C extension methods marked ractor-unsafe","articleBody":"The `msgpack` gem (1.8.0) cannot be used inside [Ractors](https://docs.ruby-lang.org/en/master/Ractor.html) on Ruby 4.0. Every operation - `MessagePack.pack`, `.unpack`, creating `Packer`/`Unpacker`/`Factory` instances - fails. This makes it impossible to use Ractors for parallel MessagePack serialization/deserialization.\n\n```ruby\n#!/usr/bin/env ruby\n# frozen_string_literal: true\n\n# POC: msgpack gem 1.8.x is incompatible with Ruby 4.0 Ractors\n\nrequire \"bundler/inline\"\n\ngemfile(true) do\n  source \"https://rubygems.org\"\n  gem \"msgpack\", \"~\u003e 1.8\"\nend\n\nrequire \"msgpack\"\n\nputs \"Ruby #{RUBY_VERSION}, msgpack #{MessagePack::VERSION}\"\nputs \"-\" * 50\n\ntests = {\n  \"MessagePack.pack\"       =\u003e -\u003e { Ractor.new { MessagePack.pack({\"a\" =\u003e 1}) }.value },\n  \"MessagePack.unpack\"     =\u003e -\u003e { Ractor.new(MessagePack.pack(\"hi\")) { |d| MessagePack.unpack(d) }.value },\n  \"Packer.new in Ractor\"   =\u003e -\u003e { Ractor.new { MessagePack::Packer.new.write(\"x\").to_s }.value },\n  \"Unpacker.new in Ractor\" =\u003e -\u003e { Ractor.new(MessagePack.pack(1)) { |d| u = MessagePack::Unpacker.new; u.feed(d); u.read }.value },\n  \"Factory.new in Ractor\"  =\u003e -\u003e { Ractor.new { MessagePack::Factory.new }.value },\n  \"Send Packer to Ractor\"  =\u003e -\u003e { Ractor.new(MessagePack::Packer.new) { |p| p.to_s }.value },\n  \"Access DefaultFactory\"  =\u003e -\u003e { Ractor.new { MessagePack::DefaultFactory }.value },\n}\n\ntests.each do |name, test|\n  print \"#{name}: \"\n  begin\n    test.call\n    puts \"OK\"\n  rescue Ractor::RemoteError =\u003e e\n    puts \"FAILED — #{e.cause.class}: #{e.cause.message}\"\n  rescue =\u003e e\n    puts \"FAILED — #{e.class}: #{e.message}\"\n  end\nend\n```","author":{"url":"https://github.com/mensfeld","@type":"Person","name":"mensfeld"},"datePublished":"2026-05-08T15:05:03.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/390/msgpack-ruby/issues/390"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:0d3ea2dc-4d94-4043-337f-d564e8cfc24d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC1A0:1B3B59:363695E:4BC2AF4:6A635ADE
html-safe-nonce4524341014139196e82cbe90b4d1544ecddf0784235bbd85a4807f6388d26383
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMUEwOjFCM0I1OTozNjM2OTVFOjRCQzJBRjQ6NkE2MzVBREUiLCJ2aXNpdG9yX2lkIjoiOTEyMzc4NTU0Njc3NTM1NDA3OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaceeca4cf44b64ece44a27aa8a5f00bcad0712075b4f3ac6b3f1ed183c47d6d12c
hovercard-subject-tagissue:4407345959
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/msgpack/msgpack-ruby/390/issue_layout
twitter:imagehttps://opengraph.githubassets.com/f673334253695be36f7847fcea95255b34a468538bff78652cd27fd4dc8d4403/msgpack/msgpack-ruby/issues/390
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/f673334253695be36f7847fcea95255b34a468538bff78652cd27fd4dc8d4403/msgpack/msgpack-ruby/issues/390
og:image:altThe msgpack gem (1.8.0) cannot be used inside Ractors on Ruby 4.0. Every operation - MessagePack.pack, .unpack, creating Packer/Unpacker/Factory instances - fails. This makes it impossible to use R...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemensfeld
hostnamegithub.com
expected-hostnamegithub.com
None59e55daad7174ca59d63c6974d58276ccb5477442e550bebb3c035e1bef11c94
turbo-cache-controlno-preview
go-importgithub.com/msgpack/msgpack-ruby git https://github.com/msgpack/msgpack-ruby.git
octolytics-dimension-user_id198264
octolytics-dimension-user_loginmsgpack
octolytics-dimension-repository_id2479813
octolytics-dimension-repository_nwomsgpack/msgpack-ruby
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id2479813
octolytics-dimension-repository_network_root_nwomsgpack/msgpack-ruby
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release990295d92a4cc7b63fbbd83a046217cd7d77d49c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/msgpack/msgpack-ruby/issues/390#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmsgpack%2Fmsgpack-ruby%2Fissues%2F390
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmsgpack%2Fmsgpack-ruby%2Fissues%2F390
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=msgpack%2Fmsgpack-ruby
Reloadhttps://github.com/msgpack/msgpack-ruby/issues/390
Reloadhttps://github.com/msgpack/msgpack-ruby/issues/390
Reloadhttps://github.com/msgpack/msgpack-ruby/issues/390
Please reload this pagehttps://github.com/msgpack/msgpack-ruby/issues/390
msgpack https://github.com/msgpack
msgpack-rubyhttps://github.com/msgpack/msgpack-ruby
Notifications https://github.com/login?return_to=%2Fmsgpack%2Fmsgpack-ruby
Fork 123 https://github.com/login?return_to=%2Fmsgpack%2Fmsgpack-ruby
Star 789 https://github.com/login?return_to=%2Fmsgpack%2Fmsgpack-ruby
Code https://github.com/msgpack/msgpack-ruby
Issues 2 https://github.com/msgpack/msgpack-ruby/issues
Pull requests 1 https://github.com/msgpack/msgpack-ruby/pulls
Actions https://github.com/msgpack/msgpack-ruby/actions
Projects https://github.com/msgpack/msgpack-ruby/projects
Security and quality 1 https://github.com/msgpack/msgpack-ruby/security
Insights https://github.com/msgpack/msgpack-ruby/pulse
Code https://github.com/msgpack/msgpack-ruby
Issues https://github.com/msgpack/msgpack-ruby/issues
Pull requests https://github.com/msgpack/msgpack-ruby/pulls
Actions https://github.com/msgpack/msgpack-ruby/actions
Projects https://github.com/msgpack/msgpack-ruby/projects
Security and quality https://github.com/msgpack/msgpack-ruby/security
Insights https://github.com/msgpack/msgpack-ruby/pulse
Ractor incompatibility: DefaultFactory not shareable, C extension methods marked ractor-unsafehttps://github.com/msgpack/msgpack-ruby/issues/390#top
https://github.com/mensfeld
mensfeldhttps://github.com/mensfeld
on May 8, 2026https://github.com/msgpack/msgpack-ruby/issues/390#issue-4407345959
Ractorshttps://docs.ruby-lang.org/en/master/Ractor.html
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.