[NCBC-185] document bugs Created: 18/Dec/12 Updated: 01/Jan/13 Resolved: 01/Jan/13 |
|
| Status: | Resolved |
| Project: | Couchbase .NET client library |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 1.2.1 |
| Type: | Bug | Priority: | Minor |
| Reporter: | Saakshi Manocha | Assignee: | Saakshi Manocha |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
I went through the link http://www.couchbase.com/docs/couchbase-sdk-net-1.2/getting-started.html, which covers the sections 1.1, 1.2 and 1.3
I find the document good enough, following are the observations that may be corrected: (a) 1.3.1 - Project Set up There is no Enyim.Memcached.dll assembly in preview release zip file. Enyim.Caching.dll is available. (b) CRUD operations JSON document with key "110fc0f765" does not exist in beer-sample bucket var key = BitConverter.ToString(HashAlgorithm.Create("SHA1") .ComputeHash(Encoding.UTF8.GetBytes(newBeer))) .Replace("-", "").Substring(0, 10).ToLower(); returns "fc4970a84c" and not "5c26a734c9" (c) CouchbaseClient JSON Extension Methods add reference and add these statements in code: using Newtonsoft.Json; using Couchbase.Extensions; (d) Working with Views: May be add more about the rows returned from GetView(), Reduce method and stale parameter. |
| Comments |
| Comment by John Zablocki [ 26/Dec/12 ] |
|
a) Fixed b) Replaced with new key format (when written, the sample bucket didn't have meaningful keys) c) Mentioned in the paragraph d) More details are found in the tutorial Revision pending approval Pull request sent to docs team |
| Comment by Saakshi Manocha [ 27/Dec/12 ] |
|
Hi John,
I am not able to find the changes that you have mentioned in the comment above. I'm looking at the URL : http://www.couchbase.com/docs/couchbase-sdk-net-1.2/crud.html Please see if this is the correct place. Thanks Saakshi |