On Sun, Mar 1, 2020 at 11:35 PM Warren Stephens <wsteph...@prognoshealth.com>
wrote:

> Axel,
>
> I like your example.  Var *e* would get re-declared -- so that is a
> change.  However, var *x* is not visible past the *with* statement --
> only var *a* is brought forward.
>
> So we need another attempt at breaking this.  :-)
>

Careless of me. Add `x` to the `with` statement.


> Splitting the code into separate funcs introduces calls, and I work with
> big data, many billions of records.  So that introduces production
> inefficiency for the purpose of test writing -- which costs time and money
> in the cloud.
>

Note that you are very much not alone with this. For example, I have worked
on systems with trillions of records. Many on this list - and in
particular, on the Go team - are in very similar boats. I don't say this to
brag - but just to clarify, that a lack of experience with scale is not
generally what informs opinions here.

I don't really think your suggestion is a priori more efficient, FWIW.
There is no reason the compiler actually *has* to insert function calls,
and given that your suggestion is semantically equivalent to splitting the
code into multiple functions (and that is the most likely way it would be
implemented - after all, with the GC, defer and other features, you can't
just jmp into the middle of a function anyway), I feel it's hard to justify
why it would be more efficient without actually looking at a finished
implementation (and weighing that against putting that effort into better
compiler-optimizations).

In any case - I don't think efficiency can or should really drive the
discussion.


>
> Warren
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/golang-nuts/d55e9c5d-6d07-4c91-92c6-a3c3060790bf%40googlegroups.com
> <https://groups.google.com/d/msgid/golang-nuts/d55e9c5d-6d07-4c91-92c6-a3c3060790bf%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAEkBMfERV6e5QLd5i42SUQqhE%3D7a229o2%2BYyMxiQOJ1vhxp%2B1Q%40mail.gmail.com.

Reply via email to