jQuery Serialization
Something jquery users have a command to render a JSON serialization of a form. Really simple way to flash a submission to a database or NoSQL in theory. Must try it out.
NoSQL data
Maybe when I have a very successful website getting millions of hits I will need the raw speed of NoSQL but unless you build it they will never use it – is also an important principle when producing a show and it applies to software production. Learn the best tool once, and use it until there is a better one. The best NoSQL for large datasets may be Mongo DB or Cassandra. I am not fazed by saying that I do not have time to know about that unless a customer needs it but a customer will never ask for something that I can not do, so when I start to blow Redis’s limits or MySQL stores blobs too slowly (with rapid key access in Redis), then there is no advantage with an average site having a massive data set.
Big data
Big data is an exception, and I have worked on a big data project. It used a highly effective but simple network design with Javascript promises creating its very necessary asynchronicity.
The Philosophy of Needs
This is an argument for if you are going to need it, build it in. If you are never going to need it, do not even learn it but certainly try to use it if you actually understand it. Learn new products when you may need them.
Needs are not always met
In a career spanning decades, I have worked on one big data project. Every other project coped perfectly well with the speed that current tools provide.
Need to serialize a form?
When using VueJS you may want to serialise a form. This is as simple as this:
JSON.stringify(this.dataForm)