René's URL Explorer Experiment


Title: Class caching is too aggressive in dev · Issue #1439 · JSONAPI-Resources/jsonapi-resources · GitHub

Open Graph Title: Class caching is too aggressive in dev · Issue #1439 · JSONAPI-Resources/jsonapi-resources

X Title: Class caching is too aggressive in dev · Issue #1439 · JSONAPI-Resources/jsonapi-resources

Description: This issue is a (choose one): Problem/bug report. Feature request. Request for support. Note: Please try to avoid submitting issues for support requests. Use Gitter instead. Checklist before submitting: I've searched for an existing issu...

Open Graph Description: This issue is a (choose one): Problem/bug report. Feature request. Request for support. Note: Please try to avoid submitting issues for support requests. Use Gitter instead. Checklist before submit...

X Description: This issue is a (choose one): Problem/bug report. Feature request. Request for support. Note: Please try to avoid submitting issues for support requests. Use Gitter instead. Checklist before submit...

Opengraph URL: https://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Class caching is too aggressive in dev","articleBody":"## This issue is a (choose one):\r\n\r\n- [x] Problem/bug report.\r\n- [ ] Feature request.\r\n- [ ] Request for support. **Note: Please try to avoid submitting issues for support requests. Use [Gitter](https://gitter.im/cerebris/jsonapi-resources) instead.** \r\n\r\n## Checklist before submitting:\r\n\r\n- [x] I've searched for an existing issue.\r\n- [ ] I've asked my question on [Gitter](https://gitter.im/cerebris/jsonapi-resources) and have not received a satisfactory answer.\r\n- [x] I've included a complete [bug report template](https://github.com/cerebris/jsonapi-resources/blob/master/lib/bug_report_templates/rails_5_master.rb). This step helps us and allows us to see the bug without trying to reproduce the problem from your description. It helps you because you will frequently detect if it's a problem specific to your project.\r\n- [ ] The feature I'm asking for is compliant with the [JSON:API](http://jsonapi.org/) spec.\r\n\r\n## Description\r\n\r\nChoose one section below and delete the other:\r\n\r\n### Bug reports:\r\n\r\nI'm using the `v0-11-dev` branch, and recently upgraded from commit 1bdacf1 to 311b1fe. If I start the server I can make a request for a resource just fine, but if I modify any resource I get empty results returned until I restart my dev server. I stepped through the commits on the `v0-11-dev` branch between the range above and narrowed it down to 2668b6b that seems to have introduced the bug. The resource queries after making code changes have a `AND (TRUE=FALSE)` condition appended to them which causes nothing to be returned. \r\n\r\nSteps to reproduce:\r\n\r\n1. Start dev server.\r\n    * Note, I have `eager_load = false, cache_classes = false` in development.rb, but do separately eager load my models if that might make a difference.\r\n3. Request a resource index, in my case \"users\"\r\n    * I see queries like this: `User Count (0.5ms)  SELECT COUNT(*) FROM \"users\"`\r\n4. Make any change to a resource, even an unrelated one. In my case, I removed the `updated_at` field from the list of fields\r\n5. Make the same request from step 2 again\r\n    * I now see queries like this: `User Count (0.2ms)  SELECT COUNT(*) FROM \"users\" WHERE (TRUE=FALSE)`\r\n    \r\n## UPDATE Feb 7, 2024\r\nThe `WHERE (TRUE=FALSE)` bit isn't specifically coming from `jsonapi-resources`, but is coming from `CanCanCan`, it's their default scope if no rules apply and you use `accessible_by` which I am using, and no rules apply due to class caching (more on that below).\r\n\r\nThe underlying problem is that the [new class caching](https://github.com/cerebris/jsonapi-resources/blob/v0-11-dev/lib/jsonapi/resource_common.rb#L543-L557) introduced in 2668b6b doesn't get reset when Rails reloads your application. I believe this is because `JSONAPI::Resource` doesn't live within the app, so modifications to the app code don't get picked up. So if you make a change to your app, then the following is true:\r\n* `YourModelResource` returns the new code (since it lives within the app)\r\n* `YourModelResource.resource_klass_for` returns the new code (again, it was reloaded)\r\n* `JSONAPI::Resource.resource_klass_for` returns the old code because it wasn't reloaded. Aside from the problems with `CanCanCan` I ran into, this also means that changes to resources don't get picked up without restarting your server.\r\n\r\nHere's the bug report template that reproduces this issue. Warning, it will write to `./app/resources/your_model_resource.rb` because the file needs to be there so the autoloader can reload it.\r\n```\r\n# ensure the resource exists in the \"unedited state\"\r\nMY_RESOURCE_FILE_PATH = File.dirname(__FILE__)\r\nputs \"creating resource file in #{MY_RESOURCE_FILE_PATH}\"\r\n`mkdir -p #{MY_RESOURCE_FILE_PATH}/app/resources`\r\n`echo 'class YourModelResource \u003c JSONAPI::Resource; attribute :name; end' \u003e #{MY_RESOURCE_FILE_PATH}/app/resources/your_model_resource.rb`\r\n\r\nbegin\r\n  require 'bundler/inline'\r\n  require 'bundler'\r\nrescue LoadError =\u003e e\r\n  STDERR.puts 'Bundler version 1.10 or later is required. Please update your Bundler'\r\n  raise e\r\nend\r\n\r\ngemfile(true, ui: ENV['SILENT'] ? Bundler::UI::Silent.new : Bundler::UI::Shell.new) do\r\n  source 'https://rubygems.org'\r\n\r\n  gem 'rails', require: false\r\n  gem 'sqlite3', platform: :mri\r\n\r\n  if ENV['JSONAPI_RESOURCES_PATH']\r\n    puts \"installing jsonapi-resources @ #{ENV['JSONAPI_RESOURCES_PATH']}\"\r\n    gem 'jsonapi-resources', path: ENV['JSONAPI_RESOURCES_PATH'], require: false\r\n  elsif ENV['BEFORE_BUG']\r\n    puts \"installing jsonapi-resources @ 0bbbc0bc9d3dbe547fc9a7e34aab2185d0cef682\"\r\n    gem 'jsonapi-resources', git: 'https://github.com/cerebris/jsonapi-resources', ref: '0bbbc0bc9d3dbe547fc9a7e34aab2185d0cef682', require: false\r\n  else\r\n    puts \"installing jsonapi-resources @ v0-11-dev\"\r\n    gem 'jsonapi-resources', git: 'https://github.com/cerebris/jsonapi-resources', branch: 'v0-11-dev', require: false\r\n  end\r\n\r\nend\r\n\r\n# prepare active_record database\r\nrequire 'active_record'\r\n\r\nclass NullLogger \u003c Logger\r\n  def initialize(*_args)\r\n  end\r\n\r\n  def add(*_args, \u0026_block)\r\n  end\r\nend\r\n\r\nActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:')\r\nActiveRecord::Base.logger = ENV['SILENT'] ? NullLogger.new : Logger.new(STDOUT)\r\nActiveRecord::Migration.verbose = !ENV['SILENT']\r\n\r\nActiveRecord::Schema.define do\r\n  # Add your schema here\r\n  create_table :your_models, force: true do |t|\r\n    t.string :name\r\n  end\r\nend\r\n\r\nclass YourModel \u003c ActiveRecord::Base\r\nend\r\n\r\n# prepare rails app\r\nrequire 'action_controller/railtie'\r\n# require 'action_view/railtie'\r\nrequire 'jsonapi-resources'\r\n\r\nclass ApplicationController \u003c ActionController::Base\r\nend\r\n\r\n# prepare jsonapi resources and controllers\r\nclass YourModelsController \u003c ApplicationController\r\n  include JSONAPI::ActsAsResourceController\r\nend\r\n\r\nclass TestApp \u003c Rails::Application\r\n  config.root = File.dirname(__FILE__)\r\n  config.logger = ENV['SILENT'] ? NullLogger.new : Logger.new(STDOUT)\r\n  Rails.logger = config.logger\r\n\r\n  secrets.secret_token = 'secret_token'\r\n  secrets.secret_key_base = 'secret_key_base'\r\n\r\n\r\n  config.cache_classes = false\r\n  config.eager_load = false\r\n  config.hosts = [\"example.org\"]\r\nend\r\n\r\n# initialize app\r\nRails.application.initialize!\r\n\r\nJSONAPI.configure do |config|\r\n  config.json_key_format = :underscored_key\r\n  config.route_format = :underscored_key\r\nend\r\n\r\n# draw routes\r\nRails.application.routes.draw do\r\n  jsonapi_resources :your_models, only: [:index, :create]\r\nend\r\n\r\n# prepare tests\r\nrequire 'minitest/autorun'\r\nrequire 'rack/test'\r\n\r\n# Replace this with the code necessary to make your test fail.\r\nclass BugTest \u003c Minitest::Test\r\n\r\n  def test_resource_klass_cache_refreshes\r\n    assert_equal(\r\n      YourModelResource.object_id,\r\n      JSONAPI::Resource.resource_klass_for('your_models').object_id,\r\n      \"Expected resource to be returned from resource_klass_for\"\r\n    )\r\n    assert_equal(\r\n      %i[id name],\r\n      YourModelResource.fields,\r\n      \"Expected YourModelResource definition to be reset to default fields\"\r\n    )\r\n    assert_equal(\r\n      %i[id name],\r\n      JSONAPI::Resource.resource_klass_for('your_models').fields,\r\n      \"Expected JSONAPI::Resource.resource_klass_for definition to be reset to default fields\"\r\n    )\r\n\r\n    # \"update\" the resource class to make `display_name` the new `name` attribute\r\n    `echo 'class YourModelResource \u003c JSONAPI::Resource; attribute :display_name, delegate: :name; end' \u003e #{Rails.root}/app/resources/your_model_resource.rb`\r\n    Rails.application.reloader.reload!\r\n\r\n    assert_equal(\r\n      %i[id display_name],\r\n      YourModelResource.fields,\r\n      \"Expected YourModelResource definition to be reloaded\"\r\n    )\r\n\r\n    assert_equal(\r\n      %i[id display_name],\r\n      JSONAPI::Resource.resource_klass_for('your_models').fields,\r\n      \"Expected JSONAPI::Resource.resource_klass_for definition to be reloaded\"\r\n    )\r\n    assert_equal(\r\n      YourModelResource.object_id,\r\n      JSONAPI::Resource.resource_klass_for('your_models').object_id,\r\n      \"Expected updated resource to be returned from resource_klass_for after reload\"\r\n    )\r\n  end\r\nend\r\n```\r\n\r\nRun `BEFORE_BUG=true ruby test_template.rb` to see it pass\r\nRun `ruby test_template.rb` to see it fail against v0-11-dev","author":{"url":"https://github.com/adamkiczula","@type":"Person","name":"adamkiczula"},"datePublished":"2024-01-25T15:39:37.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/1439/jsonapi-resources/issues/1439"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:130c2d99-bb4d-3ef6-6bd7-ab1df10e1502
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB1E4:16E576:1D3746:265D2D:6A51B793
html-safe-nonce86865d63a7a81a0f549c0be5db01bbf2feac4d68160bea1cd0966185932cc5c5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMUU0OjE2RTU3NjoxRDM3NDY6MjY1RDJEOjZBNTFCNzkzIiwidmlzaXRvcl9pZCI6IjgwMjgwMTEzNTIyOTQ1MzcxMDciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc318166a7a4ecc91b740fd944d94c70f5a29f6dcfcaa45fff4297dcc641ab940
hovercard-subject-tagissue:2100657360
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/JSONAPI-Resources/jsonapi-resources/1439/issue_layout
twitter:imagehttps://opengraph.githubassets.com/49725b0bfa658dbdfe069586480b2ad2fb8c33b0dd9823bdead1c5112d4e807d/JSONAPI-Resources/jsonapi-resources/issues/1439
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/49725b0bfa658dbdfe069586480b2ad2fb8c33b0dd9823bdead1c5112d4e807d/JSONAPI-Resources/jsonapi-resources/issues/1439
og:image:altThis issue is a (choose one): Problem/bug report. Feature request. Request for support. Note: Please try to avoid submitting issues for support requests. Use Gitter instead. Checklist before submit...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameadamkiczula
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/JSONAPI-Resources/jsonapi-resources git https://github.com/JSONAPI-Resources/jsonapi-resources.git
octolytics-dimension-user_id262422067
octolytics-dimension-user_loginJSONAPI-Resources
octolytics-dimension-repository_id18248068
octolytics-dimension-repository_nwoJSONAPI-Resources/jsonapi-resources
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id18248068
octolytics-dimension-repository_network_root_nwoJSONAPI-Resources/jsonapi-resources
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
release7aed05249554b889eb33d002851a973eebcc7e91
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FJSONAPI-Resources%2Fjsonapi-resources%2Fissues%2F1439
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
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%2FJSONAPI-Resources%2Fjsonapi-resources%2Fissues%2F1439
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=JSONAPI-Resources%2Fjsonapi-resources
Reloadhttps://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439
Reloadhttps://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439
Reloadhttps://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439
Please reload this pagehttps://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439
JSONAPI-Resources https://github.com/JSONAPI-Resources
jsonapi-resourceshttps://github.com/JSONAPI-Resources/jsonapi-resources
Notifications https://github.com/login?return_to=%2FJSONAPI-Resources%2Fjsonapi-resources
Fork 543 https://github.com/login?return_to=%2FJSONAPI-Resources%2Fjsonapi-resources
Star 2.3k https://github.com/login?return_to=%2FJSONAPI-Resources%2Fjsonapi-resources
Code https://github.com/JSONAPI-Resources/jsonapi-resources
Issues 208 https://github.com/JSONAPI-Resources/jsonapi-resources/issues
Pull requests 52 https://github.com/JSONAPI-Resources/jsonapi-resources/pulls
Discussions https://github.com/JSONAPI-Resources/jsonapi-resources/discussions
Actions https://github.com/JSONAPI-Resources/jsonapi-resources/actions
Projects https://github.com/JSONAPI-Resources/jsonapi-resources/projects
Wiki https://github.com/JSONAPI-Resources/jsonapi-resources/wiki
Security and quality 0 https://github.com/JSONAPI-Resources/jsonapi-resources/security
Insights https://github.com/JSONAPI-Resources/jsonapi-resources/pulse
Code https://github.com/JSONAPI-Resources/jsonapi-resources
Issues https://github.com/JSONAPI-Resources/jsonapi-resources/issues
Pull requests https://github.com/JSONAPI-Resources/jsonapi-resources/pulls
Discussions https://github.com/JSONAPI-Resources/jsonapi-resources/discussions
Actions https://github.com/JSONAPI-Resources/jsonapi-resources/actions
Projects https://github.com/JSONAPI-Resources/jsonapi-resources/projects
Wiki https://github.com/JSONAPI-Resources/jsonapi-resources/wiki
Security and quality https://github.com/JSONAPI-Resources/jsonapi-resources/security
Insights https://github.com/JSONAPI-Resources/jsonapi-resources/pulse
Class caching is too aggressive in devhttps://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439#top
https://github.com/adamkiczula
adamkiczulahttps://github.com/adamkiczula
on Jan 25, 2024https://github.com/JSONAPI-Resources/jsonapi-resources/issues/1439#issue-2100657360
Gitterhttps://gitter.im/cerebris/jsonapi-resources
Gitterhttps://gitter.im/cerebris/jsonapi-resources
bug report templatehttps://github.com/cerebris/jsonapi-resources/blob/master/lib/bug_report_templates/rails_5_master.rb
JSON:APIhttp://jsonapi.org/
1bdacf1https://github.com/JSONAPI-Resources/jsonapi-resources/commit/1bdacf1e9d9f1e4c2c56843815c65004b692aa2c
311b1fehttps://github.com/JSONAPI-Resources/jsonapi-resources/commit/311b1fe0ec16b23346a9fb8c676f02b42cbf11a5
2668b6bhttps://github.com/JSONAPI-Resources/jsonapi-resources/commit/2668b6b78cfb9cbae710d1b18e373ceda2eb5737
new class cachinghttps://github.com/cerebris/jsonapi-resources/blob/v0-11-dev/lib/jsonapi/resource_common.rb#L543-L557
2668b6bhttps://github.com/JSONAPI-Resources/jsonapi-resources/commit/2668b6b78cfb9cbae710d1b18e373ceda2eb5737
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.