Learn More About This
Directory
This directory sponsored by SIQL, a Spider Makers company...
1. SAM Cached Files Query
- d0db.fnal.gov
- SAM Cached Files Query .
- Cached Before: (dd-mon-yy:)Ex:06-JUN-1999 .
- Cached After: (dd-mon-yy:)Ex:06-JUN-1999 .
- Fetch Matching Cached Files:.
- Cached Files Query.
2. search.cpan.org: Harry Jackson / Tie-RDBM-Cached-0.02
- search.cpan.org
3. Adaptive Precision Setting for Cached Approximate Values
- www.db.stanford.edu
- Adaptive Precision Setting for Cached Approximate Values.
- To maximize the performance improvement, cached approximations must be of appropriate precision: approximations that are too precise easily become invalid, requiring frequent refreshing, while overly imprecise approximations are likely to be useless to applications, which must then bypass the cache. We present a parameterized algorithm for adjusting the precision of cached approximations adaptively to achieve the best performance as data values, precision requirements, or workload vary. ...
4. An Adaptive High-Low Water Mark Destage Algorithm for Cached RAID5
- csdl.computer.org
- 177 An Adaptive High-Low Water Mark Destage Algorithm for Cached RAID5 .
- The High-Low Water Mark destage (HLWM) algorithm is widely used to enable a cached RAID5to flush dirty data from its write cache to disks. ... Performance evaluations with a cached RAID5 simulator reveal that the proposed algorithm outperforms the HLWM algorithm in terms of read response time, write cache hit ratio, and disk utilization. ...
5. Linux-Kernel Archive: Re: ~500 megs cached yet 2.6.5 goes into swap hell
- www.uwsg.iu.edu
- --> Re: ~500 megs cached yet 2. ...
- Next message: Andrew Morton: "Re: ~500 megs cached yet 2. ...
- Previous message: Paul Mackerras: "Re: ~500 megs cached yet 2. ...
- In reply to: Andrew Morton: "Re: ~500 megs cached yet 2. ...
- Next in thread: Helge Hafting: "Re: ~500 megs cached yet 2. ...
- Next message: Andrew Morton: "Re: ~500 megs cached yet 2. ...
- Previous message: Paul Mackerras: "Re: ~500 megs cached yet 2. ...
- In reply to: Andrew Morton: "Re: ~500 megs cached yet 2. ...
- Next in thread: Helge Hafting: "Re: ~500 megs cached yet 2. ...
6. CPAN Testers: Reports for IO-File-Cached
- testers.cpan.org
- CPAN Testers: Reports for IO-File-Cached .
- These are the test reports that we have for the CPAN distribution IO-File-Cached. ...
7. Happy Bunny Ltd - Jason Smith
- www.users.globalnet.co.uk
- Cached MSI File cleanup.
- Microsoft have updated their MSIZAP utility to include an option to delete cached MSIs.
- MSIZAP G = remove orphaned cached Windows Installer data files (for all users).
- Cached MSI Cleanup v1. ...
- When MSI scripts are installed, a cached copy of the. ...
- (OAG TIS at 120Mb) you may discover you have a large number of redundant cached MSI files.
- In our case, after a year of OAG TIS updates, there is over 1GB of cached. ...
- When an MSI script is un-installed, the cached. ...
- This Wise InstallMaster program checks the registry for known cached. ...
- MSI files that are not marked as 'cached' in the registry.
8. Microsoft IE can Divulge Location of Cached Content
- www.ciac.org
- L-061: Microsoft IE can Divulge Location of Cached Content.
- Because IE can divulge the physical location of cached content, an attacker could potentially plant and execute code of her choice. ...
- ****** Start Microsoft Advisory ****** - ---------------------------------------------------------------------- Title: IE can Divulge Location of Cached Content Date: 06 March 2001 Software: IE and Windows Scripting Host Impact: Run code of attacker's choice. ... The purpose of the cache is to obfuscate the physical location of the cached content, in order to ensure that the web page or HTML e-mail will work through the IE security architecture to access the information. ... A vulnerability exists because it is possible for a web page or HTML e-mail to learn the physical location of cached content. Armed with this information, an attacker could cause the cached content to be opened in the Local Computer Zone. ...
9. ISS X-Force Database:mssql-cached-connection-access(6684): Microsoft SQL Server cached connections could allow an attacker to gain access to the database
- www.iss.net
- Microsoft SQL Server cached connections could allow an attacker to gain access to the database.
- mssql-cached-connection-access (6684).
- This vulnerability exists because client connections are cached for a short period of time after they have been terminated. If the SQL Server database is configured to use the Mixed Mode for authenticating users, the attacker could reuse the database administrator's cached connection to gain full administrative privileges over the database.
- Microsoft Security Bulletin MS01-032, SQL Query Method Enables Cached Administrator Connection to be Reused at http://www. ...
- BID-2863: Microsoft SQL Server Administrator Cached Connection Vulnerability .
- 0 using Mixed Mode allows local database users to gain privileges by reusing a cached connection of the sa administrator account. ...
10. cached.com: Your Cashew Source on the Internet
- www.cached.com
11. Google Offering a Little Different On Their Cache -- Cached Text Only
- www.researchbuzz.org
- Google Offering a Little Different On Their Cache -- Cached Text Only .
- Google is now offering two forms of cached items: a full cache, and cached text only. ...
- Run a search, and then pick a cached page. ...
- "This cached page may reference images which are no longer available. Click here for the cached text only. ...
- Cached text only gives you, as you might expect, cached text only without images or, from what I saw, stylesheets. ...
12. ASP.NET.4GuysFromRolla.com: Displaying Cached XML Data in a DataGrid, and Intelligently Refreshing the Data
- www.411asp.net
- Displaying Cached XML Data in a DataGrid, and Intelligently Refreshing the Data .
- This cached HTML is stored on disk and is cached for a specific period of time (say 30 seconds). ...
- In this article we will first look at caching a DataSet in the data cache, and binding this cached DataSet to a DataGrid. Specifically, this cached DataSet will contain the data from an XML file residing on the Web server's file system. A cache dependency will then be used so that the cached DataSet is evicted from the data cache when the XML file's contents are altered. In essence we will be examining how to create a DataGrid that displays cached data, but whose data is never stale! (That is, whenever the data changes, the cached version of the data is updated as well. ...
- To bind the DataGrid to a cached DataSet, we first must check that the DataSet is in the cache. ...
- When the end of this conditional statement is reached, we know for certain that there exists a cache item named authorsDS (that should have a cached DataSet populated from the books. ... If, on the other hand, when the page is visited the cache item does exist, then we don't need to populate the DataSet with the XML file contents, since the contents are already populated in a cached DataSet. ...
- All that's left to do here is bind the cached DataSet to a DataGrid, which is accomplished using the following complete code example: .
- " End If 'Set the DataGrid's DataSource to the cached DataSet dgBooks. ...
- If you try this example on your own computer, you'll find that the first time you visit the page it indicates that the DataSet was populated from the XML file; however, if you reload the page, this message does not appear, since the DataSet is cached, and the DataGrid is using the cached version. ...
- Caching the Data in a More Intelligent Manner One downside, though, is that when using cached data, the data may become stale. For example, if you visit the page with the cached DataSet once, to load the DataSet into the cache, and then the contents of the XML file are changed, the cached DataSet page will continue to show the cached data. ...
- Ideally we'd like to be able to have the cached data reside in the cache so long as the underlying XML data doesn't change. To put it another way, as soon as the XML file's contents change, we want the cached DataSet to be evicted from the cache. ...
Other related topics:
Do you have a great site about Cached? Is
your Cached site listed here?
Would you like a prefered placement of your site in this directory?
It's easy! First place, the HTML from the box below on your page that
you would like listed in this directory.
Then use our link submission request with
your name, your contact information, and the URL of your site that has
a link to this directory. After we
verify your link to us, we'll make sure your site stays in our directory,
and we'll give it prefered placement here also.
Here is how to make a simple text link to us. Just copy the code in this
box to your website:
We can also develop a custom Guide To The Internet for your site. Please
request your own
custom Guide To The Internet.
This custom Guide To The Internet produced by
Siql. Visit us today, and find out how to get your own
custom guide to the Internet, and how to get your site
listed in our guides.
Copyright 1995-2004 by Siql. All
Rights Reserved.