InterviewSolution
Saved Bookmarks
| 1. |
Which of these methods are used to find a URL from the cache of httpd?(a) findfromCache()(b) findFromCache()(c) serveFromCache()(d) getFromCache() |
|
Answer» The correct option is (c) serveFromCache() To explain I would say: serveFromCatche() is a boolean method that attempts to find a particular URL in the cache. If it is successful then the content of that cache entry are written to the client, otherwise it returns false. |
|