I have a doubt (probably very basic) when it comes to know if a field has been stored with information in the database. I’m working with Laravel and MySQL as DB engine. The situation is as follows: I have a field in the database that stores information (in this case it is a LONGTEXT field ..
Category : query-optimization
im working on a function that returns some data. It’s nested in another function wich returns more data. Currently is not handling very well scalability (the overall response time gets up to 2mins in some cases, but if i don’t use this function it takes only a few seconds) The function that is being affected ..