Caching in asp.net Part 119

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ธ.ค. 2024

ความคิดเห็น • 23

  • @Csharp-video-tutorialsBlogspot
    @Csharp-video-tutorialsBlogspot  11 ปีที่แล้ว +2

    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.

  • @phalgunkumar2251
    @phalgunkumar2251 11 ปีที่แล้ว +1

    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

  • @TheGunman96
    @TheGunman96 3 ปีที่แล้ว

    Your video is best for everyone trying to understand the coding and the technical issue behind it

  • @Csharp-video-tutorialsBlogspot
    @Csharp-video-tutorialsBlogspot  11 ปีที่แล้ว

    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

  • @monishan1943
    @monishan1943 3 ปีที่แล้ว

    Thank you soo much sir very useful 😊😊😊😊

  • @agustinmoragues191
    @agustinmoragues191 2 ปีที่แล้ว

    I know this is a little old, but still an excellent explanation kudvenkat! Thanks!

  • @johnwindsor5426
    @johnwindsor5426 8 ปีที่แล้ว +1

    very nice tutor. thank you so much to provide these very good learning videos.

    • @Csharp-video-tutorialsBlogspot
      @Csharp-video-tutorialsBlogspot  8 ปีที่แล้ว +1

      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

  • @fazalurrehmanshaikh3455
    @fazalurrehmanshaikh3455 4 ปีที่แล้ว

    Great explaination !

  • @sca11ywagg
    @sca11ywagg 5 ปีที่แล้ว

    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

  • @sachinthakare810
    @sachinthakare810 12 ปีที่แล้ว

    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

  • @80amnesia
    @80amnesia 10 ปีที่แล้ว +1

    nice example, as usual

  • @adarshhebbar2365
    @adarshhebbar2365 10 ปีที่แล้ว

    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.

    • @devang3d
      @devang3d 9 ปีที่แล้ว

      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)

  • @nadayousef5143
    @nadayousef5143 4 ปีที่แล้ว

    god bless you

  • @Csharp-video-tutorialsBlogspot
    @Csharp-video-tutorialsBlogspot  11 ปีที่แล้ว

    and Part 132 - Reload data into cache automatically when data in the table changes.

  • @srinadh1627
    @srinadh1627 4 ปีที่แล้ว

    where this cache is stored, in client memory or web server ?

  • @RamanjaneyuluKondaru
    @RamanjaneyuluKondaru 12 ปีที่แล้ว

    Thank you Sir.

  • @girijesh-mca
    @girijesh-mca 10 ปีที่แล้ว

    Hello sir interviewer asked me many times that how can we add addition data in the cache. sir please answer me. thanks...

    • @MetallKnighT
      @MetallKnighT 9 ปีที่แล้ว +1

      +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);

  • @RafayKhanfy
    @RafayKhanfy 5 ปีที่แล้ว

    What if the data gets changed in the database?

  • @honeesh1
    @honeesh1 12 ปีที่แล้ว

    Thank professorial creativity professorial
    Professorial me asking how I work Class one to add record, edit, and delete