-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathProductiveRage.SqlProxyAndReplay.Service.nuspec
25 lines (25 loc) · 1.9 KB
/
ProductiveRage.SqlProxyAndReplay.Service.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<package >
<metadata>
<id>ProductiveRage.SqlProxyAndReplay.Service</id>
<title>ProductiveRage.SqlProxyAndReplay.Service</title>
<version>1.3.5</version>
<authors>ProductiveRage</authors>
<owners>ProductiveRage</owners>
<licenseUrl>https://github.com/ProductiveRage/SqlProxyAndReplay/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/ProductiveRage/SqlProxyAndReplay</projectUrl>
<iconUrl>https://secure.gravatar.com/avatar/6a1f781d4d5e2d50dcff04f8f049767a?s=200</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Service to performance test code by removing the database dependency, in order to always return consistent data for known queries</summary>
<description>For performance testing services that depend upon a SQL database, the service may be tested with known inputs and the SQL queries that are executed will be captured (along with their results). Then the service may be re-tested but the SQL proxy layer will return known results to the same SQL queries. So long as all of the same queries are repeated when the same inputs are passed to the service, the database will be removed from the test. This could be used to measure data access code performance but it is initially intended more to allow a service to run for a long time reliably (independent of any external database) in order enable investigations into hot paths and ways to reduce garbage collection load.</description>
<copyright>Copyright 2016 ProductiveRage</copyright>
<tags>C# SQL WCF</tags>
<dependencies>
<dependency id="ProductiveRage.SqlProxyAndReplay.Interface" version="1.3.0" />
</dependencies>
</metadata>
<files>
<file src="ProductiveRage.SqlProxyAndReplay.DataProviderService.dll" target="lib\net40" />
<file src="ProductiveRage.SqlProxyAndReplay.DataProviderService.xml" target="lib\net40" />
</files>
</package>