Pengine http requests
Anne Ogborn <[email protected]>
| Newsgroups | gmane.comp.ai.prolog.swi |
|---|---|
| Message-ID | <[email protected]> |
My game board map has 540 squares. Every time the map is updated (happens relatively infrequently) the client will do something like new_board :- between(0,18, LatNum), between(0,27, LongNum), board_status(LatNum, LongNum, Status), pengine_output(point(LatNum, LongNum, Status)). Is this going to generate 532 http requests?