Update the documentation to remove dead bitbucket links
See original GitHub issueIn the documentation some links are still pointing to the dead bitbucket wiki (at https://bitbucket.org/zzzeek/sqlalchemy/wiki/)
This is an example: https://docs.sqlalchemy.org/en/13/orm/extensions/baked.html#rationale
There is an example of this on the wiki in the section BakedQuery, a precursor to this feature …
I’m not sure if it is just a find https://bitbucket.org/zzzeek/sqlalchemy/wiki/
and replace https://github.com/sqlalchemy/sqlalchemy/wiki/
job.
If so I can try to open a pr for it
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
1. Bitbucket Server documentation ...
When an automatic merge fails, Bitbucket Server creates a new pull request for the failed merge, and the automatic merge operation stops. You....
Read more >Removing the Edit on Github link when using Read The Docs ...
I'm trying to find out how to use the _template overrides option in Sphinx to override the default ReadTheDocs theme for hosting Sphinx...
Read more >Rest URL Is coming back as a Dead Link - Bitbucket
Im able to do my automated backups for Confluence but starting a couple weeks ago the JIRA backups have been failing via the...
Read more >Changing Atlassian Bitbucket path - Server Fault
I have read a ton of documents and every site says that just updating Base URL should work - so why does it...
Read more >Control Freak for Bitbucket Server - Documentation
Control-Freak queries the primary Jira link as well as any secondary links ... "git pull" and "git fetch", but tag updates (moves) and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The entry in that documentation page seems to be the only link to the bitbucket wiki.
Since you plan to rework the backed query anyway, and the is no longer the entry in the github page, I’ll leave it alone
bakedquery is getting a fair amount of use but the plan is hopefully that the whole thing would become transparent.
one of the biggest technical issues I’m having however is that to generate an “honest” cache key, which means, to actually look at all the expressions and parameters you put into the query and build up a cache key based on what is constructing the query, rather than “cheating” which is what the lambda thing is doing, is still fairly computationally expensive. the “lambda:” trick is still by far the most performant approach it’s just very strange looking. in the newer caching system, if I keep the lambda concept in, it will work even better because I’ve figured out a way to derive literal values from them. that is, you won’t need to worry about using bindparam() inside of them.
That probably all sounds very vague but it would take me a lot of time to explain, I hope that I can just get some time to make more progress with the newer approach.
if you need faster ORM queries right now I think you should use BakedQuery because the newer idea is not going to be production quality for at least a year.