Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. cache????

cache????

Scheduled Pinned Locked Moved ASP.NET
sysadminperformancequestion
5 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    srilu nagalla
    wrote on last edited by
    #1

    Can anybody tell me "cache" is browser memory,or server memory or both? I have idea about server side cache, what about browser cache? Thanks&Regards Srilakshmi

    N G 2 Replies Last reply
    0
    • S srilu nagalla

      Can anybody tell me "cache" is browser memory,or server memory or both? I have idea about server side cache, what about browser cache? Thanks&Regards Srilakshmi

      N Offline
      N Offline
      Neeraj Arora
      wrote on last edited by
      #2

      Cookies is the only type of clientside caching. ViewState seems used at clientside but actually it traverse during callback between clintside and serverside. Neeraj

      G 1 Reply Last reply
      0
      • S srilu nagalla

        Can anybody tell me "cache" is browser memory,or server memory or both? I have idea about server side cache, what about browser cache? Thanks&Regards Srilakshmi

        G Offline
        G Offline
        Guffa
        wrote on last edited by
        #3

        srilu nagalla wrote:

        Can anybody tell me "cache" is browser memory,or server memory or both?

        Both and neither. There are many ways of caching. A file can be cached in the browser. The browser will then use the cached copy instead of requesting a new one from the server. This is especially useful for images. Files can be cached in memory or on disk. A page can be cached on the server, so that when someone requests the page, the code to create it doesn't always have to run. A file can be cached between the server and the browser, for example in a router. The server can use caching for other things than pages. You can for example cache a commonly used object so that you don't always have to fetch it from some slower media, like a database.

        --- b { font-weight: normal; }

        N 1 Reply Last reply
        0
        • N Neeraj Arora

          Cookies is the only type of clientside caching. ViewState seems used at clientside but actually it traverse during callback between clintside and serverside. Neeraj

          G Offline
          G Offline
          Guffa
          wrote on last edited by
          #4

          Neeraj Arora wrote:

          Cookies is the only type of clientside caching.

          It's not at all the only type of client side caching. The usual form of client side caching is caching of requested files. Furthermore, cookies are not cached at all. They are stored at client side, and it's the only place that they are stored.

          --- b { font-weight: normal; }

          1 Reply Last reply
          0
          • G Guffa

            srilu nagalla wrote:

            Can anybody tell me "cache" is browser memory,or server memory or both?

            Both and neither. There are many ways of caching. A file can be cached in the browser. The browser will then use the cached copy instead of requesting a new one from the server. This is especially useful for images. Files can be cached in memory or on disk. A page can be cached on the server, so that when someone requests the page, the code to create it doesn't always have to run. A file can be cached between the server and the browser, for example in a router. The server can use caching for other things than pages. You can for example cache a commonly used object so that you don't always have to fetch it from some slower media, like a database.

            --- b { font-weight: normal; }

            N Offline
            N Offline
            Neeraj Arora
            wrote on last edited by
            #5

            Thanks for this information. I was really unaware of these concepts but buddy the problem was written here for browser cache.:) Neeraj

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups