Ralf Brandenstein

Results 64 comments of Ralf Brandenstein

@brylie why would you not want to use the file url? https://github.com/CollectionFS/Meteor-CollectionFS/blob/master/packages/access-point/api.md#fsfileurloptionsanywhere ```html {{#with file}} click to download {{/with}} ```

iirc, you could to a method call to the server and receive the data from the method response... but it will be a lot slower.

This seems to be about sharding and multinode setups?

Is this a common, server or client method? It should be on the client. Do you set the allow rules for those collections? Where and what is the "file" you...

Oh and also keep in mind that the Images.insert callback returns the _id instantly, it's not uploaded yet. So if you remove the upload element on return of your method,...

What happens when you comment out the `Router.go("/")` line? Because the upload is most likely not finished at that point. You can also add ``` javascript FS.debug = true ```...

This might have been a duplicate. The only thing i ever changed in nginx related to cfs was adding this to the server config ``` client_body_buffer_size 256k; ``` Did you...

Buffer is Server-Only. Also method-calls use DDP and thats much slower then HTTP which gets used if you insert on the client. --- https://github.com/CollectionFS/Meteor-CollectionFS#initiate-the-upload The insert method can directly accept...

Hmm, on second view, you are using `Uint8Array` which is labeled as "both" so you might just have to add a type somehow.. (might have to do some more digging...

iirc you don't *receive* all the stores contents at all times. Only the ones you ask for with `{{url store='thumbs'}}` What exactly is the *performance issue*?