Earlier quoted context omitted.
That is what I am moving to. I currently use their hosting but plan on moving to a DigitalOcean box soon.
I remember when they launched with a $5/month hosting plan, then when they raised it to $10. Just looked at the pricing page and the minimum is now $36/month (or $29/month billed yearly). That's some serious sticker shock. Is it that much better than say, Squarespace?
Introducing Ghost 2.0
81–90 of 111 posts
Re: Introducing Ghost 2.0
#82Heyo, John from Ghost here. Thanks for the kind words so far about 2.0 — it’s been a hectic few months! Earlier this year I talked about how we were shifting focus from simplicity to power - https://blog.ghost.org/5/ - and this is the first big release since that move. Whereas early versions were extremely opinionated and rigid, we’re now starting to bake in more flexibility and configurability to allow for a more di…
Re: Introducing Ghost 2.0
#83Earlier quoted context omitted.
> New features require building a routing map for all possible URLs on boot, which is a dramatically heavy operation. We were eventually forced to forgo our traditional ORM layer entirely to get any degree of performance (insert: shock/awe) - Related: It turns out SQLite3 has a query limit of 999 SQL variables, so we had to implement a recursive query strategy for SQLite only. Wild. Out of pure technical curiosity, h…
We're loading all public-facing resources - so posts, tags, authors and importantly the relations between them - in as few queries as possible, using fairly typical where...in queries in order to build the relations. SQLite uses variables for in queries, and so sites with a lot of content triggered the "more than 999 variables" error. Solvable, of course, but quite an interesting limitation to discover!
Re: Introducing Ghost 2.0
#84I’m amazed no-one has mentioned the lack of a built-in commenting feature. The makers of Ghost are here appreciating the benefits of comments but sadly they haven’t made there way to Ghost yet. I’d love to move to Ghost from Wordpress but commenting is essential. And no. 3rd party Garbage like Disqus isn’t a viable option.
Re: Introducing Ghost 2.0
#85I would love to see an official static site mode for Ghost (and Wordpress). That way we can get both a nice authoring experience and the low cost/security of S3 hosting.
Re: Introducing Ghost 2.0
#86Earlier quoted context omitted.
This is always the first thing I look for in the new version announcements for big blogging platforms. Would be amazing if I didn't need to know a completely separate technology and/or hack together bridges/site "staticizers" in order to have a quite basic functionality (the site be 100% static when no back-end dynamic interaction is needed). That said, there are third party plugins for WordPress that do this. Don't…
Check out Publii, then (Open Source too). It's quite similar to WordPress in a lot of ways, but it's a desktop app that uploads static files. https://github.com/GetPublii/Publii
Re: Introducing Ghost 2.0
#87I’m amazed no-one has mentioned the lack of a built-in commenting feature. The makers of Ghost are here appreciating the benefits of comments but sadly they haven’t made there way to Ghost yet. I’d love to move to Ghost from Wordpress but commenting is essential. And no. 3rd party Garbage like Disqus isn’t a viable option.
A lot of blogs do just this... use Hacker News, Reddit or Twitter as their comments. Comments on blogs have become less relevant as time goes on. That being said, there are some decent Open Source Disqus clones out there you could probably use!
Reddit and HN topics become read-only after some time, so I'm not sure how they can replace blog comments.
Twitter for comments, I don't understand. I guess you link to your canonical tweet and people reply to it? I find threaded conversation on Twitter to be just about unbearable.
Re: Introducing Ghost 2.0
#88Earlier quoted context omitted.
> New features require building a routing map for all possible URLs on boot, which is a dramatically heavy operation. We were eventually forced to forgo our traditional ORM layer entirely to get any degree of performance (insert: shock/awe) - Related: It turns out SQLite3 has a query limit of 999 SQL variables, so we had to implement a recursive query strategy for SQLite only. Wild. Out of pure technical curiosity, h…
We're loading all public-facing resources - so posts, tags, authors and importantly the relations between them - in as few queries as possible, using fairly typical where...in queries in order to build the relations. SQLite uses variables for in queries, and so sites with a lot of content triggered the "more than 999 variables" error. Solvable, of course, but quite an interesting limitation to discover!
Re: Introducing Ghost 2.0
#89Earlier quoted context omitted.
> New features require building a routing map for all possible URLs on boot, which is a dramatically heavy operation. We were eventually forced to forgo our traditional ORM layer entirely to get any degree of performance (insert: shock/awe) - Related: It turns out SQLite3 has a query limit of 999 SQL variables, so we had to implement a recursive query strategy for SQLite only. Wild. Out of pure technical curiosity, h…
We're loading all public-facing resources - so posts, tags, authors and importantly the relations between them - in as few queries as possible, using fairly typical where...in queries in order to build the relations. SQLite uses variables for in queries, and so sites with a lot of content triggered the "more than 999 variables" error. Solvable, of course, but quite an interesting limitation to discover!
For the relation data, you should check out Hexastore [0] (essentially graph storage). It takes up much more space, but you can follow any paths of relationship and you can do it step by step instead of loading everything at once.
Re: Introducing Ghost 2.0
#90Earlier quoted context omitted.
We're loading all public-facing resources - so posts, tags, authors and importantly the relations between them - in as few queries as possible, using fairly typical where...in queries in order to build the relations. SQLite uses variables for in queries, and so sites with a lot of content triggered the "more than 999 variables" error. Solvable, of course, but quite an interesting limitation to discover!
I discovered a similar limit with postgresql, mainly due to the protocol sending the query length as a 16-bit number, limiting the total length to ~65k characters. In that case it was far better to create a temporary table and JOIN that rather than using an " IN (..)" clause anyway, so that's another option if SQLite supports it.