Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize entity deletion in SimpleJpaRepository #3564

Closed

Commits on Aug 7, 2024

  1. Optimize entity deletion in SimpleJpaRepository.

    This change improves the performance of the delete method by first checking if the entity is already managed by the EntityManager. If so, it removes the entity directly without additional database queries. This optimization can reduce unnecessary database lookups in certain scenarios.
    Seol-JY committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    2bbbe70 View commit details
    Browse the repository at this point in the history
  2. Add author

    Seol-JY committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    dbef2ed View commit details
    Browse the repository at this point in the history