moose-en-a-gant Posted February 17, 2015 Share Posted February 17, 2015 I'm trying to devise a summarizer, I intend to "teach it" so to speak, how to take a wall of garbage and summarize it. This is useful to me when I want to learn about things quickly and not have to sift through garbage. I intend to build a scraper of some kind or actually to start with a direct copy and paste approach, and then "the magic happens" pattern recognition, word frequency with identifiers on the page of where stuff is and how many sources were used Anyway, aside from the technical part of storing the information locally or on a server to be processed using javascript or php, I'm curious about what route to go with... It would seem obvious, use the client's resources, to save on server resources but how much can I get? I don't know if you can have a lot of access to the clients processing power... what about browser based games? It's really not a lot of computing I would like to assume. Any thoughts would be appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/294678-how-much-can-you-rely-should-you-use-a-clients-resources-for-processing/ Share on other sites More sharing options...
IThinkMyBrainHurts Posted April 8, 2015 Share Posted April 8, 2015 Yeah, do all the parsing client side... if its what they want then they'll let it happen. In reality i'd say some server side stuff may need to go on, e.g. check words for validity, meaning, etc. But the highlighting, summary etc can all easily be done clientside. Quote Link to comment https://forums.phpfreaks.com/topic/294678-how-much-can-you-rely-should-you-use-a-clients-resources-for-processing/#findComment-1508506 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.