I run bundle exec rails c
,
It goes to development environment.
When I do User.count I get 0 records.
- But after I do
bin/spring stop
and thenbin/spring start
, I see User.count records as 23782. Why is it so? - What does spring do here?
- What are its role and responsibilities?
- Should I do this everytime?
- Is this Spring same as Java Spring?