Just wanted to say thanks for your videos, they really helped me in a project im working on recently. Really solid! Already got an idea how to apply that to model.
Thank you for this. I use Django regularly and hadn't noticed this new field. Just a tip, `sqlmigrate` doesn't require the full migration name, the number is sufficient. In your case, `sqlmigrate core 0014`would do it. And since you are in the terminal anyway, it might be easier to get the migration name with the command `showmigrations core`instead of looking up the migrations file to copy+paste.
@property functions and save() method override will have their uses, but many common uses will be usurped by GeneratedField(). Thanks again for an excellent video. Well explained.
It was very helpful tutorial series Keep it up. I wanted to ask what extensions for VS Code have installed. if it is possible if you would let us know. Best regards Celebi
how fix low req I install Django and postgresql on aapanel server 4 CPU rum 8 but when test max Request number: 100 Return number: 23 QPS: 7 Traffic: 848KB per second
Is it a good idea to delegate this to the database? Every app I've worked on the DB is the bottleneck. Is it not better to leave the DB to write and save only and have all of the functions and logic executed by the application?
I think the bottleneck would typically be in table joins, lack of indexes, etc. Just delegating a calculation alone (especially if it's stored) shouldn't affect performance too much (I don't think). The database itself may process a set of calculations more efficiently than pulling the data out and doing it in Python, too. There may be other observations and scenarios where this doesn't apply though.
@@bugbytes3923 I would add that this is one of the reasons database engines have stored procedures and views built in, so they can calculate these very easily, and probably faster than doing it on code. Great video btw…cheers
Django ORM Playlist: th-cam.com/video/EsBqIZmR2Uc/w-d-xo.html
The quality of your content knows no bound. We appreciate you Sir
100% the default channel for Django videos
Thanks a lot - really appreciate it!
Just wanted to say thanks for your videos, they really helped me in a project im working on recently. Really solid! Already got an idea how to apply that to model.
Glad to hear that, thanks a lot for sharing and for the support!
I thank you so much. After watching your django tutorial, I decided to make my final year project.
Thank you - good luck with it!
Thank you for this. I use Django regularly and hadn't noticed this new field.
Just a tip, `sqlmigrate` doesn't require the full migration name, the number is sufficient.
In your case, `sqlmigrate core 0014`would do it.
And since you are in the terminal anyway, it might be easier to get the migration name with the command `showmigrations core`instead of looking up the migrations file to copy+paste.
Precious content. Loved the playlist
Thanks a lot, glad to hear that!
This is very useful. No money property and annotation needed
Thanks!
Thankyou. Please also explain geodjango.
Awesome ! Please create a video about multi database in Django, it's a rare concept in Django.
Thank you! Good idea, will try and prepare this soon!
@property functions and save() method override will have their uses, but many common uses will be usurped by GeneratedField(). Thanks again for an excellent video. Well explained.
Thanks a lot for the comment, totally agree!
Awesome! Thanks for sharing. Could you also make videos about asynchronous ORM and view in django?
Thanks! I'd like to do some videos on that, for sure - hopefully soon.
I really like your accent❤️
Haha thanks a lot!
It was very helpful tutorial series
Keep it up.
I wanted to ask what extensions for VS Code have installed.
if it is possible if you would let us know.
Best regards
Celebi
Best content❤❤
Thanks!
Very handy! Thanks!
Thanks a lot Peter!
Great job👍
Thanks!
Thanks for sharing
Thanks for watching!
Cool video as always.
Thanks a lot!
Thanks.
Thanks for watching!
Hello Big brother love you content. Please upload more on FastAPI
Thanks a lot! Will do, soon.
thank you!!
Thanks a lot!
how fix low req
I install Django and postgresql on aapanel server 4 CPU rum 8 but when test max Request number: 100 Return number: 23 QPS: 7 Traffic: 848KB per second
When generating a fixture, we need to specify the generated field as well ? Seems like when trying to load a fixture without this field fails
That's a good question - I'm not sure, but I would not have thought you'd need to specify that. But if someone knows the answer, drop it here!
Is it a good idea to delegate this to the database? Every app I've worked on the DB is the bottleneck. Is it not better to leave the DB to write and save only and have all of the functions and logic executed by the application?
I think the bottleneck would typically be in table joins, lack of indexes, etc.
Just delegating a calculation alone (especially if it's stored) shouldn't affect performance too much (I don't think). The database itself may process a set of calculations more efficiently than pulling the data out and doing it in Python, too.
There may be other observations and scenarios where this doesn't apply though.
@@bugbytes3923 I would add that this is one of the reasons database engines have stored procedures and views built in, so they can calculate these very easily, and probably faster than doing it on code.
Great video btw…cheers
good thnak