Gods,
for introduction: I built an application for managing events and dates. The application was build up on Laravel 9.x and is updated to the last version 11.x
Since the first version on 9.x i got a problem with collecting data from database and showing the refreshed dataset on part of the app. The new data is always after 3 minutes visible with a refresh.
I tried a lot of different things to solve this problem or to work around, but
I am really out of ideas, what kind of black magic is that. Has anybody a idea. Is there a hidden database-cache or is it a laravelproblem in general ( never heart about this and found no post similiar problem to this in research )
1.) Disabling any kinds of cache
blade template cache, setting cache-driver to none ( config/cache.ph)
2.) Using Cache::flush(); in constructor of the controllers
3.) checked the dataset mannually with var_dump() [ the data exists, but the hell it shown in the template after 3 minutes]
4.) checked php/apache/mysql settings
5.) converted the app from 9.x to 11.x
6.) tried a workround with ajax to to show the data. but after a refresh before 3 minutes are gone it show the old data in normal page refresh.