imcrazytwkr

Data-related topics

Jun 6th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. # Direct data-related topics:
  2.  
  3. - "non-http" fetch methods (msgpack or bson)
  4. - web-app vs PWA preferred data transports
  5. - client-daraSource vs inter-service transports
  6. - moderately large data:
  7. - one huge chunk (GraphQL/Falcor/msgpack & cached queries)
  8. - a lot of smaller ones (websockets to minimize request overhead, even when data is not RT; long-polling as alternative and viable fallback option)
  9. - update frequency? regular overhead
  10. - a lot of small data
  11. - conditional background data fetching of small data chunks
  12. - fetch polyfills, custom libraries or axios: why, how and when
  13. - server-side flux vs message buses for real-time and near real-time data feeding
  14. - client side rendering: methods, challenges, hacks, solutions
  15. - classic vs SPA vs pJAX
  16. - _proper_ pJAX form handling: everybody thinks it's OOB when it's not (client + _server_)
  17.  
  18. # Indirectly related topics
  19.  
  20. - internal workings of Webservers on async IO loop
  21. - X-Accel overuse, alternatives, pepper caching techniques (rewrites and `try_files` in nginx)
  22. - Rails controllers vs Hanami actions and controller modules, performance and resource usage perspective, why is there not always much of difference (node.js modules, JIT, compiled languages)
  23. - Server side push (http2), nghttpx and conditional webpack bundle preload using it, cookie-based caching: native vs nginx + embedded lua + nghttpx vs H2O + embedded ruby
  24. - data pushing vs embedding data in HTML, total impact (in case reverse-proxy serves most of the resources and backend only works for direct API requests)
  25. - web-app balancing: monolith (multi-process vs multi-threaded and internal vs external control)
  26. - runit init system and why it is the best choice for node.js web-app process controller (KISS, Single Responsibility Principle)
Advertisement
Add Comment
Please, Sign In to add comment