top | item 16155280 (no title) schlarpc | 8 years ago Looks like the "Go support" is just running a precompiled binary that starts a TCP listener (https://github.com/aws/aws-lambda-go/blob/master/lambda/entr...), so might not be that hard to port... discuss order hn newest raidan|8 years ago It looks like it is exposing the handler over TCP using net/rpc. I would imagine that would be quite difficult to port to a different language. allan_s|8 years ago yes basically you would have to implement at least part of this serialisation format https://golang.org/pkg/encoding/gob/if it's a "json" like data that is sent to you (i.e a structure made out of only primitive types and list/dict) it may be not that hard, but I think it will be a work with very few value outside of this very specific use case.
raidan|8 years ago It looks like it is exposing the handler over TCP using net/rpc. I would imagine that would be quite difficult to port to a different language. allan_s|8 years ago yes basically you would have to implement at least part of this serialisation format https://golang.org/pkg/encoding/gob/if it's a "json" like data that is sent to you (i.e a structure made out of only primitive types and list/dict) it may be not that hard, but I think it will be a work with very few value outside of this very specific use case.
allan_s|8 years ago yes basically you would have to implement at least part of this serialisation format https://golang.org/pkg/encoding/gob/if it's a "json" like data that is sent to you (i.e a structure made out of only primitive types and list/dict) it may be not that hard, but I think it will be a work with very few value outside of this very specific use case.
raidan|8 years ago
allan_s|8 years ago
if it's a "json" like data that is sent to you (i.e a structure made out of only primitive types and list/dict) it may be not that hard, but I think it will be a work with very few value outside of this very specific use case.