fukamachi / dexador

A fast HTTP client for Common Lisp
http://ultra.wikia.com/wiki/Dexador
379 stars 41 forks source link

Set compile-time parameters #178

Closed anranyicheng closed 4 months ago

anranyicheng commented 4 months ago

When loading the code, the function parameters are read and evaluated so that the default parameter values ​​of the function can be displayed in slime, especially the use-connection-pool parameter. In general keyword parameter definitions, the default value should be nil, but it defaults to t.

fukamachi commented 4 months ago

Thank you for your suggestion. Looks good, except it's better not to use #. (read-eval) to use the values of special variables at the execution time.

fukamachi commented 4 months ago

Thanks!