I quickly looked this over. Does Golang have some hidden ORM like feature that makes complex persistence easy? I spent the last three months working on a storage mechanism that controls all of CRUD at the document level across what is essentially Google Groups (each op is allowed to multiple groups). This is where web work is complex.
I'm learning Django after playing with Go and webapps just to see how much easier can some things be...
Macaron: a high productive and modular web framework in Go
21–30 of 52 posts
Re: Macaron: a high productive and modular web framework in Go
#22Earlier quoted context omitted.
I'm learning Django after playing with Go and webapps just to see how much easier can some things be...
Are they easier on django compared to go+framework ?
Re: Macaron: a high productive and modular web framework in Go
#23I quickly looked this over. Does Golang have some hidden ORM like feature that makes complex persistence easy? I spent the last three months working on a storage mechanism that controls all of CRUD at the document level across what is essentially Google Groups (each op is allowed to multiple groups). This is where web work is complex.
Re: Macaron: a high productive and modular web framework in Go
#24I quickly looked this over. Does Golang have some hidden ORM like feature that makes complex persistence easy? I spent the last three months working on a storage mechanism that controls all of CRUD at the document level across what is essentially Google Groups (each op is allowed to multiple groups). This is where web work is complex.
Re: Macaron: a high productive and modular web framework in Go
#25Re: Macaron: a high productive and modular web framework in Go
#26Macaron is awesome. It's used in Gogs and Gitea
Re: Macaron: a high productive and modular web framework in Go
#27Earlier quoted context omitted.
Did you had a look at sqlx? [1] Granted, it won't generate the queries for you - but parsing into structs works 95% of time without additional mapping for me. Coming from other languages I also found the amount of necessary typing a bit disturbing first. But then you can actually read code instead of orm framework documentation, issue trackers and workarounds. [1] http://jmoiron.github.io/sqlx/
sqlx didn't work in my case last time i tried (don't remember why exactly), but it's still far from any standard like sqlalchemy (python), hibernate (java) , active records (ruby),entity framework (.net), doctrine (php) or bookshelf (js). Writing every select for every entity, with all the variations depending on whether you want to inner join with 1-n relationships (and which ones) is really tedious when you've got…
Re: Macaron: a high productive and modular web framework in Go
#28Re: Macaron: a high productive and modular web framework in Go
#29Earlier quoted context omitted.
I'm learning Django after playing with Go and webapps just to see how much easier can some things be...
Are they easier on django compared to go+framework ?
Re: Macaron: a high productive and modular web framework in Go
#30Starting to feel like Go is suffering from a glut of web frameworks.