Modularizing Rails Monoliths One Bite at a Time by Marc Reynolds

Поділитися
Вставка
  • Опубліковано 25 жов 2023
  • Rocky Mountain Ruby 2023 - Modularizing Rails Monoliths One Bite at a Time by Marc Reynolds
    As Rails monoliths grow, coupling becomes increasingly difficult to manage. Many have reached for hope in microservices but instead found higher complexity. The Modular Monolith approach is a proven, lightweight alternative that offers the benefits of enforced boundaries without being cumbersome. This talk proposes a phased approach to refactoring toward this style using the packwerk gem.
  • Наука та технологія

КОМЕНТАРІ • 7

  • @fuu812
    @fuu812 2 місяці тому

    Thanks for this talk!

  • @sunstrikovich
    @sunstrikovich 5 місяців тому +1

    Amazing talk! Thank you for sharing the experience

  • @leoluchi
    @leoluchi 5 місяців тому

    Nice topic, well explained

  • @user-ms4gx9ks1k
    @user-ms4gx9ks1k 9 місяців тому +1

    Really nice 👍topic

  • @stpaquet
    @stpaquet 9 місяців тому +2

    nice

  • @kevanschwitzer8585
    @kevanschwitzer8585 8 місяців тому

    Not a rails developer, but great talk! Appreciated the insights!

  • @BahriddinAbdiev
    @BahriddinAbdiev 7 місяців тому

    This is great talk. Thank youIf you. I have a q: if you don't have database level constraints between tables (foreign key) you might have records which are stale. Then you should have some sort of syncing mechanism or dealing with bunch of rescue RecordNotFound errors. Isn't FK constraint actually good without cascade delete?