You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
we do a linode.ipaddress.list callout for every Linode. This gets prohibitively slow as you add Linodes. Instead, we should provide some way to batch these calls together using linode-python's batching support. I would like it to look roughly like this:
Linode.search(prefetch=["ipaddresses"])
This would do the linode.list call and then batch together all the linode.ipaddress.list calls. Some memoizing will be called for, but that's good; we should have that anyway.
The text was updated successfully, but these errors were encountered:
Currently if you want to get all Linodes with their IPAddresses, like so,
we do a
linode.ipaddress.list
callout for every Linode. This gets prohibitively slow as you add Linodes. Instead, we should provide some way to batch these calls together using linode-python's batching support. I would like it to look roughly like this:This would do the
linode.list
call and then batch together all thelinode.ipaddress.list
calls. Some memoizing will be called for, but that's good; we should have that anyway.The text was updated successfully, but these errors were encountered: