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
MongoDB 1.7.3 (unstable) Released
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
  5 messages - Expand all  -  Translate all to Translated (View all originals)
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
 
Eliot Horowitz  
View profile  
 More options Nov 17 2010, 2:18 am
From: Eliot Horowitz <eliothorow...@gmail.com>
Date: Wed, 17 Nov 2010 02:18:28 -0500
Local: Wed, Nov 17 2010 2:18 am
Subject: MongoDB 1.7.3 (unstable) Released
MongoDB 1.7.3 is now available for testing.
This is part of the 1.7 development series which is not intended for
production use.
1.8 will be the culmination of the 1.7 series

Notable Changes:
- initial covered index support
- distinct can use data from indexes when possible
- map/reduce can merge or reduce results into an existing collection
- mongod tracks and mongostat displays network usage
- sharding stability improvements

Downloads: http://www.mongodb.org/downloads
Change Log: http://jira.mongodb.org/browse/SERVER/fixforversion/10195

As always, please let us know of any issues,
-Eliot


 
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.
kevin  
View profile  
 More options Nov 17 2010, 8:54 am
From: kevin <kevincastigli...@gmail.com>
Date: Wed, 17 Nov 2010 05:54:14 -0800
Local: Wed, Nov 17 2010 8:54 am
Subject: Re: [mongodb-user] MongoDB 1.7.3 (unstable) Released

please can we get this in the next one!
http://jira.mongodb.org/browse/SERVER-991

On Tue, Nov 16, 2010 at 11:18 PM, Eliot Horowitz <eliothorow...@gmail.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.
Andrew Kempe  
View profile  
 More options Nov 17 2010, 9:02 am
From: "Andrew Kempe" <andrewke...@gmail.com>
Date: Wed, 17 Nov 2010 14:02:41 -0000
Local: Wed, Nov 17 2010 9:02 am
Subject: RE: [mongodb-user] MongoDB 1.7.3 (unstable) Released

I second this... if I could vote more than once, I'd do that too :)

From: mongodb-user@googlegroups.com [mailto:mongodb-user@googlegroups.com]
On Behalf Of kevin
Sent: 17 November 2010 13:54
To: mongodb-user@googlegroups.com
Subject: Re: [mongodb-user] MongoDB 1.7.3 (unstable) Released

please can we get this in the next one!
http://jira.mongodb.org/browse/SERVER-991

On Tue, Nov 16, 2010 at 11:18 PM, Eliot Horowitz <eliothorow...@gmail.com>
wrote:

MongoDB 1.7.3 is now available for testing.
This is part of the 1.7 development series which is not intended for
production use.
1.8 will be the culmination of the 1.7 series

Notable Changes:
- initial covered index support
- distinct can use data from indexes when possible
- map/reduce can merge or reduce results into an existing collection
- mongod tracks and mongostat displays network usage
- sharding stability improvements

Downloads: http://www.mongodb.org/downloads
Change Log: http://jira.mongodb.org/browse/SERVER/fixforversion/10195

As always, please let us know of any issues,
-Eliot

--
You received this message because you are subscribed to the Google Groups
"mongodb-user" group.
To post to this group, send email to mongodb-user@googlegroups.com.
To unsubscribe from this group, send email to
mongodb-user+unsubscribe@googlegroups.com
<mailto:mongodb-user%2Bunsubscribe@googlegroups.com> .
For more options, visit this group at
http://groups.google.com/group/mongodb-user?hl=en.

--
You received this message because you are subscribed to the Google Groups
"mongodb-user" group.
To post to this group, send email to mongodb-user@googlegroups.com.
To unsubscribe from this group, send email to
mongodb-user+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/mongodb-user?hl=en.


 
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.
bingomanatee  
View profile  
 More options Nov 17 2010, 7:31 pm
From: bingomanatee <poppin.fre...@gmail.com>
Date: Wed, 17 Nov 2010 16:31:17 -0800 (PST)
Local: Wed, Nov 17 2010 7:31 pm
Subject: Re: MongoDB 1.7.3 (unstable) Released
This feels like slippery slope stuff here - once you move past simple
i/o for key/value sets you end up coding applications in the model and
committing and maintaining things in the Mongo stack that are best
left and easily accomplished with JavaScript or server side code.

If you are going to clip an array(stack) to a maximum size, why not
write input filters in MongoDB? or allow arrays of arrays and limit
the size of the stack to the size of the sum of the members'
elements?

Why not write model-centric schemas with defaults?

I like mongo the way I like my women - fast, stupid and numerous. If
it starts doing too much on its own then what will we do for a
living ? :)


 
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.
jannick  
View profile  
 More options Nov 30 2010, 3:31 pm
From: jannick <jann...@ovja.dk>
Date: Tue, 30 Nov 2010 12:31:30 -0800 (PST)
Local: Tues, Nov 30 2010 3:31 pm
Subject: Re: MongoDB 1.7.3 (unstable) Released
Assuming that the array-length-limit is supplied by the application
code (ie. no schema or metadata in mongo) I fail to see how this is
different from the atomic update operations we already have access to.
They could all be emulated using findAndModify + a versioning field,
but by having them as operations we get:
 - Simpler programming model
 - Better performance for some use cases, as the record doesn't have
to be sent to the app, and we don't have to do optimistic concurrency
with retries.

Given the document "hard" size-limit, a lot of apps have to either
prey the most extreme edge-cases never shows up, or switch to a more
complex and lower performing approach in order to handle the "max
entries" constraint themselves.

On 18 Nov., 01:31, bingomanatee <poppin.fre...@gmail.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.
End of messages
« Back to Discussions « Newer topic     Older topic »