Part 6: A Database of All English Words
The most important thing that we need for our project is to have a list of all English words in #database
So, in this video we first download a text file containing all English words and then create necessary tables in DB for storing all those words
We create an "Artisan Command" to extract the words from the text file and import them into our tables in DB
We need to have 2 tables, one table to store all the words and another one for all "5 character words".
Importing a large amount of data is tricky due to memory limits, max execution time and etc. So, we need to use some workarounds in order not to face problems while importing
#programming #laravel #frontend #fullstack