0
I Use This!
Inactive

Commits : Listings

Analyzed about 24 hours ago. based on code collected 1 day ago.
Apr 17, 2023 — Apr 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Starting to add code around map/reduce. This is a brain dump for now but a start to think about. More... about 14 years ago
Some general cleanup around auto-refresh More... about 14 years ago
Added a test for auto-assigned keys. Tests pass 20 of 20. More... about 14 years ago
Adding support for refreshing the RiakObject on PUT to avoid the round-trip Refresh More... about 14 years ago
Added some optimizations for loading data faster and fixed some issues around loading with and without keys for buckets. this greatly reduces the time it takes to perform operations such as setting allow_mult or deleteing objects. More... about 14 years ago
More work on the movies client. Some perf and lazy loading work, scale issues (huge link sets - i.e. 100k links) and some ease of use More... about 14 years ago
Adding a very quick-n-dirty implementation of a system that loads movie ratings data. This does work (the loading) however there were some tradeoffs made around Jayrock that I don't want to fix now. Uploading to AWS is taking a long time so I will test this more on a direct connection later. Unit tests are still 19 of 19 More... about 14 years ago
Removing bin and obj directories for the Movie sample apps More... about 14 years ago
Adding Movie sample app data and beginning of some classes. Refactored RiakObject to have RiakObject.Load factory methods instead of so many ctors (to allow virtual calls during loading) More... about 14 years ago
Fixed tests dealing with multi-part responses and clients. The same client will only retain two conflicts per key which is why 2 of the four conflicts were being lost during the test. Tests pass 19 of 19 now. More... about 14 years ago
Fixed the off-by-one error in the multi part document parser (was leaving the leading newline on the boundary marker in the data) More... about 14 years ago
More multipart work underway. xriak client ID removed from headers until the sibling issue is resolved. there is an off-by-one error somewhere in the content loading (probably the min/max content length check). More... about 14 years ago
The first multi part document parser test passes. This is butt ugly and probably will change a lot internally. More... about 14 years ago
Removing another directory that should not be in the git repository. (and updating .gitignore). More... about 14 years ago
Removing files that should not have been in the repository and adding a .gitignore file More... about 14 years ago
RiakObject was not loading properly when it was 404 (it was not initializing on empty but rather loading the 404 headers and content). HttpHandler now traces more on failures. More... about 14 years ago
RiakObject no longer lazy loads data and RiakOBject.Store re-uploads the existing data. The reason for this is that it's not possible to modify links without also re-uploading the data so there are no cases where PUT will be called that we do not want the content. More... about 14 years ago
Start of support for multi part messages (we fail when we get them) - also fixed a bug where GET requests did not have the Accept header being passed properly More... about 14 years ago
Added support for cached byte arrays as the RiakObject.Data() and DataString(). This is necessary to support multi-part responses where the content is returned. Made a byte[] instead of memory stream to avoid making RiakObject IDisposable. This has memory concerns for large files. More... about 14 years ago
Additional support for Link objects and the beginning of a test that does lookups. This isn't defining an API but rather letting me write code to see what feels natural. Also removed the RiakRequest and RiakResponse base classes since they were no longer needed. And bug fixes around delete and link headers. More... about 14 years ago
cleaning up some unused code More... about 14 years ago
Link model changed to make Rel and RiakTag first-class citizens with support for unknown parameters More... about 14 years ago
Link parsing and rudamentary bucket/object support added - this is not how linking will look in the long run. More... about 14 years ago
Fixing broken windows. More... about 14 years ago
Basic support for sibling objects including enumerating all the siblings. no conflict resolution assistance. More... about 14 years ago
removing dead files More... about 14 years ago
lots of cleanup but not a lot of new behavior. taking a step back to look at the state of the world. More... about 14 years ago
additional sibling support including conflict detection before getting a result stream. No resolving yet, though. More... about 14 years ago
HEAD command support added and first step towards sibling/conflict detection added More... about 14 years ago
All HTTP access now going through the HTTP handler class. This is closer to what I'm thinking but still has some hokey feeling around headers and paramters. More... about 14 years ago