server: Stop making lists out of everything

As a demonstration of the cost of this pattern:

$ python -m timeit "for i in list(range(0, 1000000)): pass"
10 loops, best of 3: 31.4 msec per loop

vs:

$ python -m timeit "for i in range(0, 1000000): pass"
10 loops, best of 3: 23.5 msec per loop

Avoiding the list represents a 33% improvement in execution speed.

In a couple of cases this strategy is taken a bit further and generators
are introduced to avoid explicitly creating lists.

Change-Id: I28b3d90dd227f5a2661cd86c0941c54531ad5413
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
1 file changed
tree: cce22a6e0391a9dc5c01c8308674243902ed7bd7
  1. fail-monitor/
  2. libmapper/
  3. obmc/
  4. .gitignore
  5. bootstrap.sh
  6. configure.ac
  7. LICENSE
  8. Makefile.am
  9. phosphor-mapper
  10. README.md
  11. setup.cfg
  12. setup.py.in
README.md

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To clean the repository run `./bootstrap.sh clean`.