Lisp HUG Maillist Archive

Wow... network connection timings?

Hi all,

I’m running on OS X Sierra tonight. And making a local connection to myself at 127.0.0.1 is taking about 11 sec at the initial opening. Thereafter, around 25 ms through negotiated layers of encryption. Anybody else see these whopping long connection startup times? 

The connection to a PC Windows machine on the local area network is taking 30 sec for initial connection. What is going on? I don’t think it is LW to blame for this…

- DM

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Re: Wow... network connection timings?

Hi David,

Did you try establish the connection with WiFi and Ethernet disconnected?
It could help troubleshooting router / DNS issues.


Best,
Cam




> On 3 Apr 2017, at 04:26, David McClain <dbm@refined-audiometrics.com> wrote:
> 
> Hi all,
> 
> I’m running on OS X Sierra tonight. And making a local connection to myself at 127.0.0.1 is taking about 11 sec at the initial opening. Thereafter, around 25 ms through negotiated layers of encryption. Anybody else see these whopping long connection startup times? 
> 
> The connection to a PC Windows machine on the local area network is taking 30 sec for initial connection. What is going on? I don’t think it is LW to blame for this…
> 
> - DM
> 
> _______________________________________________
> Lisp Hug - the mailing list for LispWorks users
> lisp-hug@lispworks.com
> http://www.lispworks.com/support/lisp-hug.html


_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Re: Wow... network connection timings?

On 3 Apr 2017, at 03:26, David McClain <dbm@refined-audiometrics.com> wrote:
> 
> I’m running on OS X Sierra tonight. And making a local connection to myself at 127.0.0.1 is taking about 11 sec at the initial opening. Thereafter, around 25 ms through negotiated layers of encryption. Anybody else see these whopping long connection startup times? 

This is usually fouled-up DNS.  A good test (as someone else said) is to nuke any external connectivity and  try connecting then.  Also try 'dig -x 127.0.0.1' for instance to see how long it takes and whether you get something like SERVFAIL back.

--tim

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

How to read the open source code with LW


Hello Everyone:
    I'm a beginner for common lisp and LW, i just finished my read for "Practical commmon lisp"
    now i want use the open source to write some real programm. concurrency especially.

    so, there is my question. how to read the open source with LispWorks.
    from example: how to jump to the define, search all reference. and so on.

    thank you.

Re: How to read the open source code with LW

Hi,

Welcome!

I would recommend to install Quicklisp to get an access to tons of
opensource projects: https://www.quicklisp.org/beta/

As soon as you install Quicklisp, you can install the package you
interested in using quicklisp, for example to install Alexandria:

(ql:quickload :alexandria)

Then you can navigate the system with System Browser: menu
Window->Tools->System Browser (on Mac at least). Type asdf:alexandria
there. You can select file/package there.

To jump to the definition use menu option Expression->Find Source.

I would recommend to read IDE User Guide to understand how to use LW
better, find it here for your version:

http://www.lispworks.com/documentation/

"friend chaoqi" <chaoqi_jia@126.com> writes:

> Hello Everyone:
> I'm a beginner for common lisp and LW, i just finished my read for "Practical commmon lisp" 
> now i want use the open source to write some real programm. concurrency especially.
>
> so, there is my question. how to read the open source with LispWorks.
> from example: how to jump to the define, search all reference. and so on. 
>
> thank you.
>

-- 
Br,
/Alexey

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Re:Re: How to read the open source code with LW

Hi  Alexey:
it's  work fine
Thank you very much.






At 2017-04-08 21:48:20, "Alexey Veretennikov" <txm.fourier@gmail.com> wrote: >Hi, > >Welcome! > >I would recommend to install Quicklisp to get an access to tons of >opensource projects: https://www.quicklisp.org/beta/ > >As soon as you install Quicklisp, you can install the package you >interested in using quicklisp, for example to install Alexandria: > >(ql:quickload :alexandria) > >Then you can navigate the system with System Browser: menu >Window->Tools->System Browser (on Mac at least). Type asdf:alexandria >there. You can select file/package there. > >To jump to the definition use menu option Expression->Find Source. > >I would recommend to read IDE User Guide to understand how to use LW >better, find it here for your version: > >http://www.lispworks.com/documentation/ > >"friend chaoqi" <chaoqi_jia@126.com> writes: > >> Hello Everyone: >> I'm a beginner for common lisp and LW, i just finished my read for "Practical commmon lisp" >> now i want use the open source to write some real programm. concurrency especially. >> >> so, there is my question. how to read the open source with LispWorks. >> from example: how to jump to the define, search all reference. and so on. >> >> thank you. >> > >-- >Br, >/Alexey > >_______________________________________________ >Lisp Hug - the mailing list for LispWorks users >lisp-hug@lispworks.com >http://www.lispworks.com/support/lisp-hug.html
Updated at: 2020-12-10 08:31 UTC