Skip to content

Commit

Permalink
added 2nd level cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ken committed Apr 14, 2009
1 parent cc9f644 commit 015c41e
Show file tree
Hide file tree
Showing 30 changed files with 55,837 additions and 55,719 deletions.
23 changes: 23 additions & 0 deletions docs/Query execution results non-covering vs. covering
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
for the query:
SELECT FirstName, LastName
FROM People p
where p.Username BETWEEN 35260922 AND 36000000

using the following non-covering index:
CREATE INDEX IX_People_Username
ON People (Username) INCLUDE (FirstName, LastName)
The query execution IO was:
Table 'People'. Scan count 2, logical reads 7558, physical reads 0, read-ahead reads 12, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
and the execution time was:
CPU time = 530 ms, elapsed time = 656 ms.

using the following covering index:
CREATE INDEX IX_People_Username
ON People (Username)
The query execution IO was:
Table 'People'. Scan count 1, logical reads 4604, physical reads 0, read-ahead reads 2, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
and the execution time was:
CPU time = 172 ms, elapsed time = 513 ms.



20,412 changes: 10,206 additions & 10,206 deletions lib/Castle.ActiveRecord.xml

Large diffs are not rendered by default.

696 changes: 348 additions & 348 deletions lib/Castle.Components.Binder.xml

Large diffs are not rendered by default.

1,334 changes: 667 additions & 667 deletions lib/Castle.Components.DictionaryAdapter.xml

Large diffs are not rendered by default.

558 changes: 279 additions & 279 deletions lib/Castle.Components.Pagination.xml

Large diffs are not rendered by default.

7,260 changes: 3,630 additions & 3,630 deletions lib/Castle.Components.Validator.xml

Large diffs are not rendered by default.

6,394 changes: 3,197 additions & 3,197 deletions lib/Castle.Core.xml

Large diffs are not rendered by default.

1,376 changes: 688 additions & 688 deletions lib/Castle.DynamicProxy2.xml

Large diffs are not rendered by default.

150 changes: 75 additions & 75 deletions lib/Castle.Facilities.Logging.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 015c41e

Please sign in to comment.