Clark McCauley

Results 51 comments of Clark McCauley

I would love to see this get reviewed and merged.

Any updates on this?

Is there a way to disable these temp folders from being created at all? We run this library on tens of thousands of agents deployed around the world and cannot...

@mathetake the challenge with the commit hash approach is that it will change, requiring re-serialization even if the compiler internals did not change. This project is currently pushing several commits...

What is the current approach for error handling within the host function? Right now, I am running a Rust-based wasm module and if my Go host function panics, it's not...

@codefromthecrypt Okay, can you clarify for me what I should do about my existing return value? Right now, I'm returning a "fat pointer" I guess which is a `u64` that...

@codefromthecrypt let me clarify, in the `get_value` function, the guest will call the host and pass in a pointer and a length to the input parameters, and the host function...

@codefromthecrypt In the long term, I'd like to switch to flatbuffers instead of serialized JSON strings which is what I'm doing now so that I can get by bearings first....

Just out of curiosity, would [interleaving tables](https://cloud.google.com/spanner/docs/schema-and-data-model#parent-child_table_relationships) as seen in Cloud Spanner be a suitable alternative to joins? While it's not a drop-in replacement for a traditional table join, it...

Besides the link I cited in my OP, the following links may be helpful. - https://cloud.google.com/spanner/docs/whitepapers/optimizing-schema-design#table_layout - See **2.3 Data Model** https://static.googleusercontent.com/media/research.google.com/en//archive/spanner-osdi2012.pdf Sadly, I haven't found much by way of...