Tagged Questions

Raven is an Open Source (with a commercial option) document database for the .NET/Windows platform. Raven offers a flexible data model design to fit the needs of real world systems. Raven stores schema-less JSON documents, allow you to define indexes using Linq queries and focus on low latency and ...

learn more… | top users | synonyms

55
votes
6answers
7k views

What are your thoughts on Raven DB? [closed]

What are your thoughts on Raven DB? How do I go about using Raven DB for data storage in a shared web hosting environment, since Raven DB is interacted with through HTTP? Are there any areas that ...
27
votes
4answers
655 views

How to search over huge non-text based data sets?

In a project I am working, the client has a an old and massive(terabyte range) RDBMS. Queries of all kinds are slow and there is no time to fix/refactor the schema. I've identified the sets of common ...
14
votes
3answers
1k views

How can I run RavenDB in a shared hosting environment?

RavenDB has the ability to run in 'embedded' mode, which as far as I understand, should allow it to be run in a shared hosting environment. Does anyone have any idea how it would work in an ASP.NET ...
10
votes
2answers
326 views

How would I model data that is heirarchal and relational in a document-oriented database system like RavenDB?

Document oriented databases (particularly RavenDB) are really intriguing me, and I'm wanting to play around with them a bit. However as someone who is very used to relational mapping, I was trying to ...
9
votes
3answers
237 views

New RavenDb ebook [closed]

I plan to write a small ebook (free) on RavenDB. In the first part I will give a brief overview of main topics (document modeling, indexes and queries), while in the second I show how I use it in a ...
9
votes
3answers
1k views

Anyone using RavenDB in a production environment?

I'm doing research on the maturity of some document-oriented stores, which includes an overview of applications and websites that use the database in production environments. There are several lists ...
8
votes
1answer
190 views

RavenDB Paging Behaviour

I have the following test for skip take - [Test] public void RavenPagingBehaviour() { const int count = 2048; var eventEntities = PopulateEvents(count); ...
8
votes
2answers
542 views

Data access architectures with Raven DB

What data access architectures are available that I can use with Raven DB? Basically, I want to separate persistence via interfaces, so I don't expose underline storage to the upper layers. I.e. I ...
7
votes
4answers
215 views

Shared hosting providers supporting RavenDB

I setup an AppHarbor application only to find out that it does not support embedded RavenDB. It looks like it may be coming soon to AppHarbor. In the mean time, all it does is throw an error as shown ...
7
votes
4answers
3k views

Choosing MongoDb/CouchDb/Raven Db - performance and scalability advice

We are looking at a document db storage solution with fail over clustering, for some read/write intensive application. We will be having an average of 40K concurrent writes per Second written to the ...
7
votes
4answers
693 views

RavenDB Ids and ASP.NET MVC3 Routes

Just building a quick, simple site with MVC 3 RC2 and RavenDB to test some things out. I've been able to make a bunch of projects, but I'm curious as to how Html.ActionLink() handles a raven DB ID. ...
7
votes
2answers
2k views

RavenDB Map-Reduce Example using .NET Client

I'm looking for an example of how to implement and use Map-Reduce within the RavenDB .NET Client. I'd like to apply it to a specific scenario: generating unique and total visitor counts. A sample ...
6
votes
2answers
92 views

RavenDB and SignalR Nuget Package Dependency Conflict

Basic conflict. SignalR wants Newtonsoft.Json version 4.0.7 or higher while RavenDB wants version equal to 4.0.5. Which obviously means they can't be installed side by side. So aside from ...
6
votes
2answers
74 views

Does RavenDB internally optimise “get document by id” type of queries?

When performing a dynamic query, RavenDB will typically create a temp index. Retrieving document by its Id doesn't trigger this behaviour: var entity = documentSession.Query<Entity>().Single(x ...
6
votes
4answers
508 views

If I choose RavenDB, what benefits of SQL Server do I lose?

If I choose RavenDB for a fairly standard CMS-like web application, what do I lose compared to SQL Server? EDIT: There is a word "benefits" in the title which is a little controversial term. Maybe I ...
6
votes
2answers
189 views

Specifying Collection Name in RavenDB

So lets say I have 3 objects Fruit, Apple and Orange. Fruit is the abstract base class for Apple and Orange. When I use session.Store(myApple), it puts it into the Apples collection. myOrange stores ...
6
votes
2answers
608 views

RavenDB : A Simple Query<T>().ToList() returns 0 results

Im using RavenDB (in server mode running @localhost:3000), and ASP.NET MVC3 I have this code segment which stopped working from build 289. It did work couple of times before, not sure if it was the ...
6
votes
1answer
539 views

RavenDB Session > 30

If I'm trying to save a list of items I want to save that has a count > 30 I get an error saying The maximum number of requests (30) allowed for this session has been reached. Raven limits the ...
6
votes
3answers
500 views

Changing “schema” in RavenDB

Just for the interest of expanding my knowledge I have started looking at various NoSQL options. The first one I visited is RavenDB and it looks interesting. I am still trying to break my deep-seated ...
6
votes
3answers
707 views

RavenDB ASP.NET session provider?

A little background: I currently make use of Memcached Providers for managing session state in my ASP.NET application. It provides facilities for using SQL Server as a fallback storage mechanism (when ...
6
votes
2answers
742 views

Securing document-style databases (MongoDb, CouchDb, RavenDb) for client (browser) access

Document databases that support REST-style JSON over HTTP access seem ideal for supporting AJAX-rich applications where the browser is making direct calls to the database, bypassing the traditional ...
5
votes
1answer
58 views

How should stale indexes be handled during testing?

I am using RavenDB in In-Memory mode for unit testing. My queries are backed by static indexes. I am not using WaitForNonStaleResults() API (nor do I want to). Typical workflow for a test is: ...
5
votes
1answer
270 views

RavenDB poor select performance

I'm testing RavenDB for my future projects. Database performance is a must requirement for me, that's why I want to be able to tune RavenDB to be at least in SQL Server's performance range, but my ...
5
votes
2answers
107 views

RavenDb Skips items when there are no filtering conditions

I want to retrieve all documents of some type by the following query: var customers = documentSession.Query<Customer>() but in this case I get only 1 result (while there are 78 of them). If I ...
5
votes
2answers
102 views

Is RavenDB a good fit for this concept?

First, a caveat: I'm rather new to the concepts behind document databases, so this may be an entirely obvious question. I need to design a system that maintains a deep hierarchical catalog of parts ...
5
votes
3answers
213 views

Faking/mocking an interface gives “no default constructor” error, how can that be?

I'm trying to write a unit test of a repository implementation. The repository uses RavenDB as a database. For the unit tests, I would like to mock the RavenDB parts. In order to create the mocks ...
5
votes
2answers
352 views

RavenDb with ASP.NET MVC 3 - How to generate URL with ID?

This is probably a very simple answer, but i'm new to RavenDb, so i'm obviously missing something. I've got a basic object with the default convention for id: public string Id { get; set; } When i ...
5
votes
2answers
648 views

RavenDB session per request with MVC3 and Ninject using repository model

I am looking for some advice on the correct mechanism to use for getting a RavenDB IDocumentSession into my repositories in a true session-pr-request behaviour. This is a greenfield MVC3 application, ...
5
votes
2answers
571 views

ASP.NET MVC 3, RavenDB, & Autofac Issue Plus 2 Other Autofac Questions

NOTE: There are 3 questions in here and I did not make separate questions since they are all somewhat related to the same code. I have the following code that registers the connection to my RavenDB ...
5
votes
1answer
618 views

I cannot run Enmbedded RavenDB

I was able to successfully run a simple test for RavenDB based on the code found at: http://ravendb.net/tutorials/hello-world Next I tried to run it in an Embedded Manner, but I keep on getting the ...
5
votes
4answers
620 views

Is it possible to work with OrientDB using C#?

Are there any implementations, api or examples of OrientDB and C#. The reason I am looking at OrientDB is becuase it's the only one that I found that is a combination of Graph and Document. Any ...
5
votes
3answers
668 views

Implementing the repository and service pattern with RavenDB

I have some difficulties implementing the repository and service pattern in my RavenDB project. The major concern is how my repository interface should look like because in RavenDB I use a couple of ...
5
votes
1answer
601 views

Querying Raven with Where() only filters against the first 128 documents?

We're using Raven to validate logins so people can get into our site. What we've found is that if you do this: // Context is an IDocumentSession Context.Query<UserModels>() ...
5
votes
2answers
794 views

Updating documents in RavenDB

If you add, delete or rename a property on a persisted entity, what's the easiest way to update the documents in RavenDB?
4
votes
3answers
113 views

Cloud Service Providers for RavenDb

Not to be confused with Shared hosting providers supporting RavenDB or other similar questions. I do not need a web host, nor want to deploy RavenDb in Embedded or Web Site mode... Question: Are ...
4
votes
2answers
55 views

Specify index document collection sorting

Let's imagine I have the following index definition: public class LastSuspensions: AbstractIndexCreationTask<Casino, LastSuspensions.ReduceResult> { public class ReduceResult ...
4
votes
2answers
123 views

Should I run RavenDB as a windows service or through IIS?

I am playing with the idea of using RavenDB as the data store for an application that will most likely have an HTML UI, a WebService UI, and server utilities that will access the data as well. One ...
4
votes
2answers
242 views

RavenDB Network Access

I'm having a difficult time finding information on how to get RavenDB to work on a network. Within the same network, I can have an instance of my app running, and it will show data from my RavenDB. ...
4
votes
1answer
74 views

How to get last write date of a RavenDB document via C#

In the Raven Studio UI, when you look into a document you can read (on the right of the page) the last write date of the document. I don't find any access via the client API in C# to this ...
4
votes
1answer
109 views

Where can I get an example RavenDB ASP.NET Membership provider?

Where can I get an example RavenDB ASP.NET membership provider? Ayende references in a blog post (second to last comment)
4
votes
1answer
442 views

Running RavenDB as an EmbeddableDocumentStore and accessing RavenDB Management Studio

I'm playing with an embedded RavenDB => RavenDB-Embedded.1.0.499 package installed via NuGet in Visual Studio 2010. It's being used in a current project that I started after reading this excellent ...
4
votes
1answer
219 views

RavenDB: How to query with multiple search terms

My entity is: class Resource { string Name; string EmployeeId; } How do I query for resources of multiple employees? I tried this: Resource[] FindResourcesByEmployees(string[] employeeIds) ...
4
votes
1answer
330 views

RavenDB: How to use Multi Maps / Reduce indexes

I have quite simple model: public class PhraseMeta: { public int Id { get; set; } public string ModuleName { get; set; } public string Description { get; set; } public DateTime ModifiedDate { ...
4
votes
1answer
205 views

Storing uploaded file data with RavenDB

What's the current best practice for storing file data with RavenDB? (CDN or RavenDB Attachments) I have been looking at Rob Ashton's excellent demo application RavenDB Photo Gallery Project. In the ...
4
votes
1answer
268 views

Delete RavenDB collection

I need to delete a whole collection of documents in Raven DB. Deleting one by one (documents) is not a wise choice. Is there a way I can do this easily?
4
votes
2answers
423 views

Is it possible to connect to an embedded DB with Raven Management Studio

I'm playing with Raven DB and am wondering if it's possible to connect to an embedded DB with Raven Management Studio. Has anyone ever done this?
4
votes
2answers
210 views

Store enum as integer in RavenDB

I would like to store Enums as integer-values inside a RavenDB-document instead of there full-name. Doing so, I would like to ensure, that changing the name of an enum-value, does not break ...
4
votes
1answer
176 views

Predicate in RavenDB dynamic query not working correctly

Consider the 2 queries: var test1 = store.OpenSession().Query<TestClass>().Where(x => x.Id == 1).ToList(); var test2 = store.OpenSession().Query<TestClass>().Where(x => x.Id ...
4
votes
1answer
215 views

Set operations in RavenDB

I read this article on ravendb set operations, but it didn't show me exactly how to update a set of documents via C#. I would like to update a field on all documents that match a certain criteria. ...
4
votes
1answer
188 views

How do I wait for the results to be updated in RavenDB after DELETE

I am using repository pattern with Raven DB. My repository interface is public interface IRepository<T> where T : Entity { IEnumerable<T> Find(Func<T, bool> exp); void ...

1 2 3 4 5 8