Thank you very much for taking time to give feedback. In the description of this video, I have included the link for ASP .NET, C#, and SQL Server playlists. All the videos are arranged in logical sequence in these playlists, which could be useful to you. Please share the link with your friends who you think would also benefit from them. If you like these videos, please click on the THUMBS UP button below the video. For email alerts, when new videos are uploaded, you may subscribe to my channel.
i am cursing my self , why i was not born in bangalore and why i din't trained in u r institute .i read caching topic from the book , but i dint understand anything , now i am very clear with the concept ..thanks a lot for this videos
Until the cache has expired, it will show a snapshot of the old data. However, it is possible to establish a database or file dependency, so that the cache is is automatically refreshed with new data, when the underlying data has changed. We have discussed this in the following concepts Part 129 - Cache dependency on files in asp.net Part 130 - Reloading or refreshing cache automatically, when cached data is removed Part 131 - Cache dependency on sql server database table
Thank you very much for taking time to give feedback. This means a lot. I am very glad you found the videos useful. I have organised all the Dot Net & SQL Server videos in to playlists, which could be useful to you th-cam.com/users/kudvenkatplaylists?view=1&sort=dd If you need DVDs or to download all the videos for offline viewing please visit www.pragimtech.com/order.aspx Slides and Text Version of the videos can be found on my blog csharp-video-tutorials.blogspot.com Tips to effectively use my youtube channel. th-cam.com/video/y780MwhY70s/w-d-xo.html If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel. th-cam.com/users/kudvenkat If you like these videos, please click on the THUMBS UP button below the video. May I ask you for a favor. I want these tutorials to be helpful for as many people as possible. Please share the link with your friends and family who you think would also benefit from them. Good Luck Venkat
Probably worth saying explicitly that caching has the trade-off of not seeing the very latest snapshot of the database. I just mention this because, in many of the apps I've worked on, this took priority. Interesting though to think about caching e.g. javascript
Thank You very much sir for your great effort i like all your videos and learn a lot,I am requesting you to please upload some videos on grid view etc as early as possible thanks in advance
As you told that within 30 seconds if that page is requested again then the cached page will be served. my doubt is that the request should be from the same user or even if the request comes from the different client/user, will also be served with cached data itself.
+girijesh kumar Prajapati To add an item to the cache by directly setting the item via key and value Cache["CacheItem1"] = "Cached Item 1";To add items to the cache by using the Insert method Cache.Insert("CacheItem2", "Cached Item 2");To add an item to the cache by specifying a dependency string[] dependencies = { "CacheItem2" }; Cache.Insert("CacheItem3", "Cached Item 3", new System.Web.Caching.CacheDependency(null, dependencies));The add an item to the cache with expiration policies Cache.Insert("CacheItem6", "Cached Item 6", null, DateTime.Now.AddMinutes(1d), System.Web.Caching.Cache.NoSlidingExpiration);To add an item to the Cache with priority settings Cache.Insert("CacheItem8", "Cached Item 8", null, System.Web.Caching.Cache.NoAbsoluteExpiration, System.Web.Caching.Cache.NoSlidingExpiration, System.Web.Caching.CacheItemPriority.High, null);To add an item to the cache using the Add method string CachedItem9 = (string)Cache.Add("CacheItem9", "Cached Item 9", null, System.Web.Caching.Cache.NoAbsoluteExpiration, System.Web.Caching.Cache.NoSlidingExpiration, System.Web.Caching.CacheItemPriority.Default, null);
Thank you very much for taking time to give feedback. In the description of this video, I have included the link for ASP .NET, C#, and SQL Server playlists. All the videos are arranged in logical sequence in these playlists, which could be useful to you. Please share the link with your friends who you think would also benefit from them. If you like these videos, please click on the THUMBS UP button below the video. For email alerts, when new videos are uploaded, you may subscribe to my channel.
i am cursing my self , why i was not born in bangalore and why i din't trained in u r institute .i read caching topic from the book , but i dint understand anything , now i am very clear with the concept ..thanks a lot for this videos
Your video is best for everyone trying to understand the coding and the technical issue behind it
Until the cache has expired, it will show a snapshot of the old data. However, it is possible to establish a database or file dependency, so that the cache is is automatically refreshed with new data, when the underlying data has changed. We have discussed this in the following concepts
Part 129 - Cache dependency on files in asp.net
Part 130 - Reloading or refreshing cache automatically, when cached data is removed
Part 131 - Cache dependency on sql server database table
Thank you soo much sir very useful 😊😊😊😊
I know this is a little old, but still an excellent explanation kudvenkat! Thanks!
very nice tutor. thank you so much to provide these very good learning videos.
Thank you very much for taking time to give feedback. This means a lot. I am very glad you found the videos useful.
I have organised all the Dot Net & SQL Server videos in to playlists, which could be useful to you
th-cam.com/users/kudvenkatplaylists?view=1&sort=dd
If you need DVDs or to download all the videos for offline viewing please visit
www.pragimtech.com/order.aspx
Slides and Text Version of the videos can be found on my blog
csharp-video-tutorials.blogspot.com
Tips to effectively use my youtube channel.
th-cam.com/video/y780MwhY70s/w-d-xo.html
If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel.
th-cam.com/users/kudvenkat
If you like these videos, please click on the THUMBS UP button below the video.
May I ask you for a favor. I want these tutorials to be helpful for as many people as possible. Please share the link with your friends and family who you think would also benefit from them.
Good Luck
Venkat
Great explaination !
Probably worth saying explicitly that caching has the trade-off of not seeing the very latest snapshot of the database. I just mention this because, in many of the apps I've worked on, this took priority. Interesting though to think about caching e.g. javascript
Thank You very much sir for your great effort i like all your videos and learn a lot,I am requesting you to please upload some videos on grid view etc as early as possible thanks in advance
nice example, as usual
As you told that within 30 seconds if that page is requested again then the cached page will be served. my doubt is that the request should be from the same user or even if the request comes from the different client/user, will also be served with cached data itself.
adarsh hebbar
Hi, If another user try to access this page then response will be serve from Cache itself.(Meaning request is not go to Server)
god bless you
and Part 132 - Reload data into cache automatically when data in the table changes.
where this cache is stored, in client memory or web server ?
Thank you Sir.
Hello sir interviewer asked me many times that how can we add addition data in the cache. sir please answer me. thanks...
+girijesh kumar Prajapati To add an item to the cache by directly setting the item via key and value
Cache["CacheItem1"] = "Cached Item 1";To add items to the cache by using the Insert method
Cache.Insert("CacheItem2", "Cached Item 2");To add an item to the cache by specifying a dependency
string[] dependencies = { "CacheItem2" };
Cache.Insert("CacheItem3", "Cached Item 3",
new System.Web.Caching.CacheDependency(null, dependencies));The add an item to the cache with expiration policies
Cache.Insert("CacheItem6", "Cached Item 6",
null, DateTime.Now.AddMinutes(1d),
System.Web.Caching.Cache.NoSlidingExpiration);To add an item to the Cache with priority settings
Cache.Insert("CacheItem8", "Cached Item 8",
null, System.Web.Caching.Cache.NoAbsoluteExpiration,
System.Web.Caching.Cache.NoSlidingExpiration,
System.Web.Caching.CacheItemPriority.High, null);To add an item to the cache using the Add method
string CachedItem9 = (string)Cache.Add("CacheItem9",
"Cached Item 9", null,
System.Web.Caching.Cache.NoAbsoluteExpiration,
System.Web.Caching.Cache.NoSlidingExpiration,
System.Web.Caching.CacheItemPriority.Default,
null);
What if the data gets changed in the database?
Thank professorial creativity professorial
Professorial me asking how I work Class one to add record, edit, and delete