Henry
Henry
I think it's fair to consider this project unmaintained. I also noticed this was using our cryptoscope dependencies but didn't survive the URL change.. the code is now available here:...
Hey @emirpasic thanks for the quick response! I only mentioned base64 since that is what the stdlib does when it encounters a `[]byte` in a struct field when marshaling to...
Yup, binary would totally work for me! If you point me to an example of that I'm sure I can take the next steps by myself.
One thing that could surly remove a lot of unnecessary cycles is the render package. It re-reads and parses the templates on each request. I opened an issue about this...
That is good to hear! I haven't fully thought this through but my current thinking is to require the `RegisterPath` calls to happen before any rendering happens (during `init()`/before `ListenAndServe`)...
Timeframe wise I don't see this happening before end of february but it is encouraging to hear this from you @jinzhu!
not that I know of... I reviewed a lot of qor's code and the assetfs and rendering is repeated a couple of times in qor/admin and i fear other places...
You might also want to check out the [NoSQL issue](https://github.com/qor/admin/issues/113).
Had a similar issue.. see https://github.com/qor/qor/issues/214
With this change. A lot of code in qor/qor/resource ([meta](https://github.com/qor/qor/blob/260180d5c4f325ba4eaf644204a7a628ba6762a9/resource/meta.go#L126), [resource](https://github.com/qor/qor/blob/260180d5c4f325ba4eaf644204a7a628ba6762a9/resource/resource.go#L160)) and qor/admin ([action](https://github.com/qor/admin/blob/145964cdc41b716eb88e173a4dd8d5a885e3406e/action.go#L148), [menu](https://github.com/qor/admin/blob/145964cdc41b716eb88e173a4dd8d5a885e3406e/menu.go#L76), [meta](https://github.com/qor/admin/blob/145964cdc41b716eb88e173a4dd8d5a885e3406e/meta.go#L53), [route](https://github.com/qor/admin/blob/145964cdc41b716eb88e173a4dd8d5a885e3406e/route.go#L234)) and other packages like worker, widget and auth could be simplified.