What is the use of load and require in ruby?The ‘load’ and ‘require’ both are used for loading the available code into the current code. ‘load’ always reloads the code every time. Autoload is always sounds good and it is suggested to use ‘require’.
In the case where loading the code every time when changed or every time someone hits the URL, it is suggested to use ‘load’ which is reasonable.What is the use of load and require in ruby? Reuire() loads and processes the Ruby code from a separate file, including whatever classes, modules, methods, and constants are in that file into the current scope. Load() performs the inclusion operation once, it reprocesses the code every time load is called.
|