Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
How to use Smuggler on embedded DB
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 26 - 35 of 35 - Collapse all  -  Translate all to Translated (View all originals) < Older 
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Itamar Syn-Hershko  
View profile  
 More options May 12 2012, 2:05 pm
From: Itamar Syn-Hershko <ita...@hibernatingrhinos.com>
Date: Sat, 12 May 2012 21:05:06 +0300
Local: Sat, May 12 2012 2:05 pm
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

A pull request

If you can get it to work with the current smuggler application that would
be ideal, otherwise adding this to Raven.Client.Embedded seems like the
best bet

On Sat, May 12, 2012 at 1:12 PM, Sean Kearon <kearon.s...@googlemail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kearon  
View profile  
 More options May 14 2012, 5:36 am
From: Sean Kearon <kearon.s...@googlemail.com>
Date: Mon, 14 May 2012 02:36:42 -0700 (PDT)
Local: Mon, May 14 2012 5:36 am
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

Thanks Itamar.

Tobi - the export facility was your work, which I just benefited from (very
happily too ;) ).  I am wondering if you want to do the pull request.  If
not, I'm happy to give it a try too.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tobi  
View profile  
 More options May 14 2012, 6:28 am
From: Tobi <listacco...@e-tobi.net>
Date: Mon, 14 May 2012 12:28:36 +0200
Local: Mon, May 14 2012 6:28 am
Subject: Re: [RavenDB] How to use Smuggler on embedded DB
Am 14.05.2012 11:36, schrieb Sean Kearon:

> Tobi - the export facility was your work, which I just benefited from (very
> happily too ;) ).  I am wondering if you want to do the pull request.  If
> not, I'm happy to give it a try too.

Feel free to do so.

Tobias


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Marisic  
View profile  
 More options May 14 2012, 10:51 am
From: Chris Marisic <ch...@marisic.com>
Date: Mon, 14 May 2012 07:51:21 -0700 (PDT)
Local: Mon, May 14 2012 10:51 am
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

On Saturday, May 12, 2012 6:12:14 AM UTC-4, Sean Kearon wrote:

> Itamar - I really think that this should be a core feature and not rely on
> a KB article.  You should be able to run Smuggler - or similar - in
> embedded mode without having to enable HTTP.  Using HTTP when Raven is
> running on the user's desktop throws up issues about user permission
> levels.  Yes, I know there is support for this in Raven, but in my scenario
> I specifically do not want to enable access through Studio as I want to
> prevent the user from accessing the data easily.  How do I add a feature
> request for this?

I don't use embedded but i certainly agree with Sean that this feature
should be support OOTB.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Itamar Syn-Hershko  
View profile  
 More options May 14 2012, 11:00 am
From: Itamar Syn-Hershko <ita...@hibernatingrhinos.com>
Date: Mon, 14 May 2012 18:00:57 +0300
Local: Mon, May 14 2012 11:00 am
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

Yes, waiting on a pull request


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kearon  
View profile  
 More options May 14 2012, 12:04 pm
From: Sean Kearon <kearon.s...@googlemail.com>
Date: Mon, 14 May 2012 09:04:41 -0700 (PDT)
Local: Mon, May 14 2012 12:04 pm
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

I'm working on it :)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kearon  
View profile  
 More options May 16 2012, 4:57 pm
From: Sean Kearon <kearon.s...@googlemail.com>
Date: Wed, 16 May 2012 13:57:15 -0700 (PDT)
Local: Wed, May 16 2012 4:57 pm
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

Itamar

Having taken a look at this, can I ask for some design guidance?  The
situation so far is:

To look at putting non-HTTP import/export functionality into
Raven.Smuggler, I need to use the following parts of DocumentDatabase:

GetIndexes()
GetDocuments()
PutIndex()
PutStatic();
Batch()
GetAttachments()
GetStatic()
TransactionalStorage.Batch()

However, Raven.Smuggler currently takes a dependency only on
Raven.Abstractions.  Adding a depencency to Raven.Database does not seem
suitable to me.  So, the options are:

   1. Put the non-HTTP import/export functionality into
   Raven.Client.Embedded.
   2. Add an abstraction to Raven.Abstractions to allow access to the above
   API.

The benefits of the first are that it's simple and the non-HTTP
import/export does mainly relate to that namespace.  The disadvantage is
that there would then be two sections of code that handled import/export.

Adding an abstraction does really seem to be the best way to go to keep the
API clean.  If you agree, can you suggest how this could be approached?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Oren Eini (Ayende Rahien)  
View profile  
 More options May 16 2012, 7:58 pm
From: "Oren Eini (Ayende Rahien)" <aye...@ayende.com>
Date: Thu, 17 May 2012 00:58:49 +0100
Local: Wed, May 16 2012 7:58 pm
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

Since when running in embedded mode, you are already doing this inside your
app, is there a reason not to add this to the Raven.Database project?

On Wed, May 16, 2012 at 9:57 PM, Sean Kearon <kearon.s...@googlemail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kearon  
View profile  
 More options May 17 2012, 2:54 am
From: Sean Kearon <kearon.s...@googlemail.com>
Date: Wed, 16 May 2012 23:54:42 -0700 (PDT)
Local: Thurs, May 17 2012 2:54 am
Subject: Re: [RavenDB] How to use Smuggler on embedded DB

Okay, thanks.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Kearon  
View profile  
 More options May 17 2012, 8:38 am
From: Sean Kearon <kearon.s...@googlemail.com>
Date: Thu, 17 May 2012 05:38:59 -0700 (PDT)
Local: Thurs, May 17 2012 8:38 am
Subject: Re: [RavenDB] How to use Smuggler on embedded DB
 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages < Older 
« Back to Discussions « Newer topic     Older topic »