924 reputation
315
bio website matb33.me
location Ottawa, Canada
age 33
visits member for 1 year, 8 months
seen 22 hours ago
stats profile views 66

Web Developer/Entrepreneur based in Ottawa, Canada


Oct
2
answered Publishing/subscribing multiple subsets of the same server collection
Oct
2
comment Publishing/subscribing multiple subsets of the same server collection
Well, I'd be able to tell which records they are, I would expect I'd have _ids. The issue lies in that the two pubsubs (50000 to 50010 and all 100 processed records) must both be represented with the same collection name on client and server. I think I need to clean this question up and post fresh. A simple and clear example is what is needed... I'll repost shortly
Oct
2
comment Publishing/subscribing multiple subsets of the same server collection
These were on records that you were publishing in the way you suggested, with the observe? I'm going to go try this, though I'm not sure how it's working
Oct
1
comment Publishing/subscribing multiple subsets of the same server collection
Lloyd, that's exactly what I've had to resort to. We'll have to change that when the auth branch lands into master. But this is slightly different. Your stub still does a local insert so that changes occur immediately, and the server gives the final yay or nay. Try running your app in Firefox, then under the file menu, click Work Offline. Try adding a few records. Do they appear despite no connection to the server? This is a good litmus test to find out if you have latency compensation working correctly.
Sep
30
comment Publishing/subscribing multiple subsets of the same server collection
Close, but since there's no publish on the client, the two client collections can't see each other. The latency compensation technique won't work either, which is the crux of all this
Sep
30
comment Publishing/subscribing multiple subsets of the same server collection
I still plan on writing up a different scenario, but maybe a quick one here might help: Imagine the first subset consists of records 50000 to 50010 (like in pagination), and your second subset is all "processed" records across all the millions of records. Two subsets, one collection. And you need to display both of these at the same time. This type of requirement becomes more and more prevalent as an app increases beyond weekend hacks
Sep
28
comment Publishing/subscribing multiple subsets of the same server collection
The example above is simplified. Assume the two subsets don't necessarily hold the same properties. It may be hard to visualize, but I promise you this is crucial when dealing with large amounts of data -- you do not want to send any more than what the client needs to see. I will try to think of a better example that illustrates the use cases
Sep
28
revised Publishing/subscribing multiple subsets of the same server collection
added 334 characters in body
Sep
28
asked Publishing/subscribing multiple subsets of the same server collection
Sep
25
revised Possible bug when observing a cursor, when deleting from collection
Fixed bug in removed callback, where extra keys you may have added in the callback caused a record to stick around after deletion
Sep
24
awarded  Yearling
Sep
22
comment How does the messages-count example in Meteor docs work?
Nevermind, just saw your code below! Looks like you've figured it out
Sep
22
comment How does the messages-count example in Meteor docs work?
As a temporary fix, you can throttle the call to self.flush(); within added using a setTimeout trick, such as: clearTimeout(t); t = setTimeout(function () { self.flush(); }, 10);
Sep
14
comment Checking if your code is running on 64-bit PHP
Not very useful. See stackoverflow.com/questions/6303241/… for a better answer
Aug
15
comment How does the messages-count example in Meteor docs work?
Note that self.flush(); within added will push that subscription down to the client as the collection is populated. Imagine you have 1,000,000 "Messages" in that "room_id". You'll be sent 1,000,000 subscriptions starting at count 1 and ending at count 1,000,000. This will lock up your browser for quite some time! Not to mention the amount of data flying over the wire...
Aug
8
comment How to get up-to-date collection on subscription onComplete
After sleeping and regaining a clear head, it struck me that autosubscribe did exactly what I needed. It seems so obvious now...
Aug
6
comment How to get up-to-date collection on subscription onComplete
I've managed to get this working by indeed using a client-side observe. I'll post some code shortly to demonstrate how this would be done
Aug
6
asked How to get up-to-date collection on subscription onComplete
Aug
6
answered Is it possible to create a custom mongodb cursor in meteor?
Jul
17
awarded  Critic