Marshall Cottrell

Results 133 comments of Marshall Cottrell

As couple "nice-to-haves" on top of this: - [ ] `QueryBuilder.where(...)` to optionally accept a plain object (e.g. `.where({ type: 'cat' })`, automatically prefixing the table alias and wrapping key/value...

@Huvik you bet. I think we'll just be using "Hangouts on Air", so if you don't join the Hangout, you should still be able to stream the event live or...

@theckman thanks! Yea, right now the plan is April 5th, 6:00PM PST / 8:00PM CDT. I'll post a link to the stream as soon as we generate one.

https://www.youtube.com/watch?v=EG0aucGzJE8

I think this API should feel more distinct from the `collections` API: ``` js var fusion = new Fusion("localhost:31420"); var presence = fusion.presence(); // use some default collection name var...

I did some fancy things when implementing client-side paging services over our REST APIs, some of which might be useful here: ``` js // `paged` is an array-like object which...

It would also be useful to have access to the total number of rows and/or pages. If this is included, we'd also have to think about how the client gets...

> total rows would require a `.count()` which isn't really performant. I would definitely make that optional if possible. Agreed, it actually makes more sense to have the user make...

@deontologician you're right and I just got a little confused by what you meant. What I was talking about with (1) and (3) can pretty much already be accomplished as...

Note if rethinkdb/rethinkdb#4909 were implemented, we could just use `.orderBy(...).slice(n, m)` and forget about all the logic for building a `.between(...)` query. All we would need to keep track of...